colorbox.css
14 years ago
diff.css
14 years ago
dt_table.css
14 years ago
fullLog.css
14 years ago
iptraf.css
14 years ago
main.css
13 years ago
phpinfo.css
14 years ago
colorbox.css
65 lines
| 1 | /* |
| 2 | ColorBox Core Style: |
| 3 | The following CSS is consistent between example themes and should not be altered. |
| 4 | */ |
| 5 | #colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;} |
| 6 | #cboxOverlay{position:fixed; width:100%; height:100%;} |
| 7 | #cboxMiddleLeft, #cboxBottomLeft{clear:left;} |
| 8 | #cboxContent{position:relative;} |
| 9 | #cboxLoadedContent{overflow:auto;} |
| 10 | #cboxTitle{margin:0;} |
| 11 | #cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;} |
| 12 | #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;} |
| 13 | .cboxPhoto{float:left; margin:auto; border:0; display:block;} |
| 14 | .cboxIframe{width:100%; height:100%; display:block; border:0;} |
| 15 | |
| 16 | /* |
| 17 | User Style: |
| 18 | Change the following styles to modify the appearance of ColorBox. They are |
| 19 | ordered & tabbed in a way that represents the nesting of the generated HTML. |
| 20 | */ |
| 21 | #cboxOverlay{ |
| 22 | background: #777; |
| 23 | background: -webkit-radial-gradient(rgba(120, 120, 120, 0.8), rgba(100, 100, 100, 0.8) 50%, rgba(70, 70, 70, 1)); |
| 24 | background: -moz-radial-gradient(rgba(120, 120, 120, 0.6), rgba(100, 100, 100, 0.8) 20%, rgba(70, 70, 70, 1)); |
| 25 | } |
| 26 | #colorbox { } |
| 27 | #cboxContent { background:#fff; overflow:hidden; padding: 0 0 8px; margin: 20px; |
| 28 | -webkit-border-radius: 3px 3px 2px 2px; -moz-border-radius: 3px 3px 2px 2px; border-radius: 3px 3px 2px 2px; /* border radius */ |
| 29 | -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.4); -moz-box-shadow: 0 2px 4px rgba(0,0,0,.4); box-shadow: 0 2px 4px rgba(0,0,0,.4); /* box shadow */ |
| 30 | -webkit-background-clip: padding-box; /* smoother borders with webkit */ } |
| 31 | #cboxError{padding:50px; border:1px solid #ccc;} |
| 32 | #cboxLoadedContent { |
| 33 | /* margin-bottom:28px; */ |
| 34 | /* MDM added: */ margin: 10px 20px 28px 20px; font-family: Arial; color: #333; |
| 35 | -webkit-border-radius: 2px 2px 0 0; -moz-border-radius: 2px 2px 0 0; border-radius: 2px 2px 0 0; /* border radius */ |
| 36 | } |
| 37 | #cboxTitle{position:absolute; bottom:8px; left:5px; text-align:center; width:100%; color:#949494;} |
| 38 | #cboxCurrent{position:absolute; bottom:8px; left:63px; color:#949494; text-indent: -9999px;} |
| 39 | #cboxSlideshow{position:absolute; bottom:8px; right:35px; color:#0092ef;} |
| 40 | #cboxPrevious{position:absolute; bottom:5px; left:5px; background:url(../images/lightbox-controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;} |
| 41 | #cboxPrevious.hover{background-position:-75px -25px;} |
| 42 | #cboxNext{position:absolute; bottom:5px; left:32px; background:url(../images/lightbox-controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;} |
| 43 | #cboxNext.hover{background-position:-50px -25px;} |
| 44 | #cboxLoadingOverlay{background:url(../images/loading_background.png) no-repeat center center;} |
| 45 | #cboxLoadingGraphic{background:url(../images/loading.gif) no-repeat center center;} |
| 46 | #cboxClose{position:absolute; bottom:5px; right:5px; background:url(../images/lightbox-controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;} |
| 47 | #cboxClose.hover{background-position:-25px -25px;} |
| 48 | |
| 49 | /* |
| 50 | The following fixes a problem where IE7+ replaces a PNG's alpha transparency with a black fill |
| 51 | when an alpha filter (opacity change) is set on the element or ancestor element. |
| 52 | */ |
| 53 | .cboxIE #cboxTopLeft, |
| 54 | .cboxIE #cboxTopCenter, |
| 55 | .cboxIE #cboxTopRight, |
| 56 | .cboxIE #cboxBottomLeft, |
| 57 | .cboxIE #cboxBottomCenter, |
| 58 | .cboxIE #cboxBottomRight, |
| 59 | .cboxIE #cboxMiddleLeft, |
| 60 | .cboxIE #cboxMiddleRight { |
| 61 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); |
| 62 | } |
| 63 | |
| 64 | |
| 65 |