~dongpo-deng/sahana-eden/test

« back to all changes in this revision

Viewing changes to static/styles/S3/colorbox.css

  • Committer: Deng Dongpo
  • Date: 2010-08-01 09:29:44 UTC
  • Revision ID: dongpo@dhcp-21193.iis.sinica.edu.tw-20100801092944-8t9obt4xtl7otesb
initial

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    ColorBox Core Style
 
3
    The following rules are the styles that are consistant between themes.
 
4
    Avoid changing this area to maintain compatability with future versions of ColorBox.
 
5
*/
 
6
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
 
7
#cboxOverlay{position:fixed; width:100%; height:100%;}
 
8
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
 
9
#cboxContent{position:relative; overflow:hidden;}
 
10
#cboxLoadedContent{overflow:auto;}
 
11
#cboxLoadedContent iframe{display:block; width:100%; height:100%; border:0;}
 
12
#cboxTitle{margin:0;}
 
13
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
 
14
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
 
15
 
 
16
/* 
 
17
    Example user style
 
18
    The following rules are ordered and tabbed in a way that represents the
 
19
    order/nesting of the generated HTML, so that the structure easier to understand.
 
20
*/
 
21
#cboxOverlay{background:url(../../img/colorbox/overlay.png) 0 0 repeat;}
 
22
#colorbox{}
 
23
    #cboxTopLeft{width:21px; height:21px; background:url(../../img/colorbox/controls.png) -100px 0 no-repeat;}
 
24
    #cboxTopRight{width:21px; height:21px; background:url(../../img/colorbox/controls.png) -129px 0 no-repeat;}
 
25
    #cboxBottomLeft{width:21px; height:21px; background:url(../../img/colorbox/controls.png) -100px -29px no-repeat;}
 
26
    #cboxBottomRight{width:21px; height:21px; background:url(../../img/colorbox/controls.png) -129px -29px no-repeat;}
 
27
    #cboxMiddleLeft{width:21px; background:url(../../img/colorbox/controls.png) left top repeat-y;}
 
28
    #cboxMiddleRight{width:21px; background:url(../../img/colorbox/controls.png) right top repeat-y;}
 
29
    #cboxTopCenter{height:21px; background:url(../../img/colorbox/border.png) 0 0 repeat-x;}
 
30
    #cboxBottomCenter{height:21px; background:url(../../img/colorbox/border.png) 0 -29px repeat-x;}
 
31
    #cboxContent{background:#fff;}
 
32
        #cboxLoadedContent{margin-top:28px;} /* changed */
 
33
        #cboxTitle{position:absolute; top:2px; left:0; text-align:center; width:100%; color:#000000; font-weight:bold;} /* changed */
 
34
        #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
 
35
        #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
 
36
        #cboxPrevious{position:absolute; bottom:0; left:0px; background:url(../../img/colorbox/controls.png) -75px 0px no-repeat; width:25px; height:25px; text-indent:-9999px;}
 
37
        #cboxPrevious.hover{background-position:-75px -25px;}
 
38
        #cboxNext{position:absolute; bottom:0; left:27px; background:url(../../img/colorbox/controls.png) -50px 0px no-repeat; width:25px; height:25px; text-indent:-9999px;}
 
39
        #cboxNext.hover{background-position:-50px -25px;}
 
40
        #cboxLoadingOverlay{background:url(../../img/colorbox/loading_background.png) center center no-repeat;}
 
41
        #cboxLoadingGraphic{background:url(../../img/colorbox/loading.gif) center center no-repeat;}
 
42
        #cboxClose{position:absolute; top:0; right:0; background:url(../../img/colorbox/controls.png) -25px 0px no-repeat; width:25px; height:25px; text-indent:-9999px;} /* changed */
 
43
        #cboxClose.hover{background-position:-25px -25px;}
 
44
 
 
45
/*
 
46
    The following fixes png-transparency for IE6.  
 
47
    It is also necessary for png-transparency in IE7 & IE8 to avoid 'black halos' with the fade transition
 
48
    
 
49
    Since this method does not support CSS background-positioning, it is incompatible with CSS sprites.
 
50
    Colorbox preloads navigation hover classes to account for this.
 
51
    
 
52
    !! Important Note: AlphaImageLoader src paths are relative to the HTML document,
 
53
    while regular CSS background ../../img/colorbox are relative to the CSS document.
 
54
*/
 
55
.cboxIE #cboxTopLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../../img/colorbox/internet_explorer/borderTopLeft.png, sizingMethod='scale');}
 
56
.cboxIE #cboxTopCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../../img/colorbox/internet_explorer/borderTopCenter.png, sizingMethod='scale');}
 
57
.cboxIE #cboxTopRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../../img/colorbox/internet_explorer/borderTopRight.png, sizingMethod='scale');}
 
58
.cboxIE #cboxBottomLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../../img/colorbox/internet_explorer/borderBottomLeft.png, sizingMethod='scale');}
 
59
.cboxIE #cboxBottomCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../../img/colorbox/internet_explorer/borderBottomCenter.png, sizingMethod='scale');}
 
60
.cboxIE #cboxBottomRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../../img/colorbox/internet_explorer/borderBottomRight.png, sizingMethod='scale');}
 
61
.cboxIE #cboxMiddleLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../../img/colorbox/internet_explorer/borderMiddleLeft.png, sizingMethod='scale');}
 
62
.cboxIE #cboxMiddleRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../../img/colorbox/internet_explorer/borderMiddleRight.png, sizingMethod='scale');}