Ignore:
Timestamp:
Jan 26, 2014, 7:21:38 PM (10 years ago)
Author:
mistic100
Message:

remove is_adviser(), use core javascript, update themes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/lightbox/theme/clear/colorbox.css

    r9976 r26985  
    11/*
    2     ColorBox Core Style:
     2    Colorbox Core Style:
    33    The following CSS is consistent between example themes and should not be altered.
    44*/
    55#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
     6#cboxWrapper {max-width:none;}
    67#cboxOverlay{position:fixed; width:100%; height:100%;}
    78#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
    89#cboxContent{position:relative;}
    9 #cboxLoadedContent{overflow:auto;}
     10#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
    1011#cboxTitle{margin:0;}
    11 #cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
     12#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
    1213#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
    13 .cboxPhoto{float:left; margin:auto; border:0; display:block;}
     14.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
    1415.cboxIframe{width:100%; height:100%; display:block; border:0;}
     16#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
    1517
    1618/*
    1719    User Style:
    18     Change the following styles to modify the appearance of ColorBox.  They are
     20    Change the following styles to modify the appearance of Colorbox.  They are
    1921    ordered & tabbed in a way that represents the nesting of the generated HTML.
    2022*/
    2123#cboxOverlay{background:url(images/overlay.png) repeat 0 0;}
    22 #colorbox{}
    23     #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -100px 0;}
    24     #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -129px 0;}
    25     #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -100px -29px;}
    26     #cboxBottomRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -129px -29px;}
     24#colorbox{outline:0;}
     25    #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px 0;}
     26    #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px 0;}
     27    #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px -29px;}
     28    #cboxBottomRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px -29px;}
    2729    #cboxMiddleLeft{width:21px; background:url(images/controls.png) left top repeat-y;}
    2830    #cboxMiddleRight{width:21px; background:url(images/controls.png) right top repeat-y;}
     
    3032    #cboxBottomCenter{height:21px; background:url(images/border.png) 0 -29px repeat-x;}
    3133    #cboxContent{background:#fff; overflow:hidden;}
     34        .cboxIframe{background:#fff;}
    3235        #cboxError{padding:50px; border:1px solid #ccc;}
    3336        #cboxLoadedContent{margin-bottom:28px;}
    3437        #cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
    3538        #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
     39        #cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;}
     40        #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
     41
     42        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
     43        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
     44       
     45        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
     46        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}
     47
    3648        #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
    3749        #cboxPrevious{position:absolute; bottom:0; left:0; background:url(images/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
    38         #cboxPrevious.hover{background-position:-75px -25px;}
     50        #cboxPrevious:hover{background-position:-75px -25px;}
    3951        #cboxNext{position:absolute; bottom:0; left:27px; background:url(images/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
    40         #cboxNext.hover{background-position:-50px -25px;}
    41         #cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;}
    42         #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
     52        #cboxNext:hover{background-position:-50px -25px;}
    4353        #cboxClose{position:absolute; bottom:0; right:0; background:url(images/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
    44         #cboxClose.hover{background-position:-25px -25px;}
     54        #cboxClose:hover{background-position:-25px -25px;}
    4555
    4656/*
    47   The following fixes a problem where IE7+ replaces a PNG's alpha transparency with a black fill
    48   when an alpha filter (opacity change) is set on the element or ancestor element.
     57  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
     58  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
     59  See: http://jacklmoore.com/notes/ie-transparency-problems/
    4960*/
    5061.cboxIE #cboxTopLeft,
     
    5869    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
    5970}
    60 
    61 /*
    62   The following provides PNG transparency support for IE6
    63 */
    64 .cboxIE6 #cboxTopLeft{background:url(plugins/lightbox/theme/clear/images/borderTopLeft.png);}
    65 .cboxIE6 #cboxTopCenter{background:url(plugins/lightbox/theme/clear/images/borderTopCenter.png);}
    66 .cboxIE6 #cboxTopRight{background:url(plugins/lightbox/theme/clear/images/borderTopRight.png);}
    67 .cboxIE6 #cboxBottomLeft{background:url(plugins/lightbox/theme/clear/images/borderBottomLeft.png);}
    68 .cboxIE6 #cboxBottomCenter{background:url(plugins/lightbox/theme/clear/images/borderBottomCenter.png);}
    69 .cboxIE6 #cboxBottomRight{background:url(plugins/lightbox/theme/clear/images/borderBottomRight.png);}
    70 .cboxIE6 #cboxMiddleLeft{background:url(plugins/lightbox/theme/clear/images/borderMiddleLeft.png);}
    71 .cboxIE6 #cboxMiddleRight{background:url(plugins/lightbox/theme/clear/images/borderMiddleRight.png);}
    72 
    73 .cboxIE6 #cboxTopLeft,
    74 .cboxIE6 #cboxTopCenter,
    75 .cboxIE6 #cboxTopRight,
    76 .cboxIE6 #cboxBottomLeft,
    77 .cboxIE6 #cboxBottomCenter,
    78 .cboxIE6 #cboxBottomRight,
    79 .cboxIE6 #cboxMiddleLeft,
    80 .cboxIE6 #cboxMiddleRight {
    81     _behavior: expression(this.src = this.src ? this.src : this.currentStyle.backgroundImage.split('"')[1], this.style.background = "none", this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + this.src + ", sizingMethod='scale')");
    82 }
    83 
    84 #cboxTitle a {color:#222; border-bottom: 0 none;}
Note: See TracChangeset for help on using the changeset viewer.