-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modified examples display & Add theme options
- Loading branch information
Showing
4 changed files
with
388 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.magnify-modal { | ||
box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.3); | ||
} | ||
|
||
.magnify-header .magnify-toolbar { | ||
background-color: rgba(0, 0, 0, .5); | ||
} | ||
|
||
.magnify-stage { | ||
top: 0; | ||
left: 0; | ||
bottom: 0; | ||
right: 0; | ||
border-width: 0; | ||
} | ||
|
||
.magnify-footer .magnify-toolbar { | ||
background-color: rgba(0, 0, 0, .5); | ||
border-top-left-radius: 5px; | ||
border-top-right-radius: 5px; | ||
} | ||
|
||
.magnify-header, | ||
.magnify-footer { | ||
pointer-events: none; | ||
} | ||
|
||
.magnify-button { | ||
pointer-events: auto; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
.magnify-modal { | ||
box-sizing: border-box; | ||
background-color: rgba(255, 255, 255, .85); | ||
box-shadow: 0 0 1px 1px #fff, 0 0 0 2px rgba(0, 0, 0, 0.3), 0 0 10px 2px rgba(0, 0, 0, 0.2), 0 1px 10px 2px rgba(0, 0, 0, 0.3); | ||
border-radius: 4px; | ||
} | ||
|
||
.magnify-header { | ||
height: 30px; | ||
} | ||
|
||
.magnify-title { | ||
padding: 8px 10px; | ||
} | ||
|
||
.magnify-stage { | ||
top: 30px; | ||
right: 5px; | ||
left: 5px; | ||
background-color: #fff; | ||
border-color: #666; | ||
} | ||
|
||
.magnify-title { | ||
color: #333 | ||
} | ||
|
||
.magnify-header .magnify-toolbar { | ||
margin-right: 5px; | ||
} | ||
|
||
.magnify-header .magnify-button { | ||
height: 22px; | ||
padding: 0; | ||
background-color: #eee; | ||
color: #fff; | ||
text-shadow: 0 0 1px #000; | ||
} | ||
|
||
.magnify-header .magnify-button:hover { | ||
background-color: #ccc; | ||
} | ||
|
||
.magnify-header .magnify-button-close { | ||
background-color: #ff6e6e; | ||
} | ||
|
||
.magnify-header .magnify-button-close:hover { | ||
background-color: #ff4545; | ||
} | ||
|
||
.magnify-footer .magnify-button { | ||
color: #666; | ||
} | ||
|
||
.magnify-footer .magnify-button:hover { | ||
color: #333; | ||
} | ||
|
||
.magnify-loader { | ||
background: transparent; | ||
} |
Oops, something went wrong.