]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/js/thickbox/thickbox.css
Wordpress 2.6.2
[autoinstalls/wordpress.git] / wp-includes / js / thickbox / thickbox.css
1
2 /* ----------------------------------------------------------------------------------------------------------------*/
3 /* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
4 /* ----------------------------------------------------------------------------------------------------------------*/
5 #TB_window {
6         font: 12px Arial, Helvetica, sans-serif;
7         color: #333333;
8 }
9
10 #TB_secondLine {
11         font: 10px Arial, Helvetica, sans-serif;
12         color:#666666;
13 }
14
15 #TB_window a:link {color: #666666;}
16 #TB_window a:visited {color: #666666;}
17 #TB_window a:hover {color: #000;}
18 #TB_window a:active {color: #666666;}
19 #TB_window a:focus{color: #666666;}
20
21 /* ----------------------------------------------------------------------------------------------------------------*/
22 /* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
23 /* ----------------------------------------------------------------------------------------------------------------*/
24 #TB_overlay {
25         position: fixed;
26         z-index:100;
27         top: 0px;
28         left: 0px;
29         height:100%;
30         width:100%;
31 }
32
33 .TB_overlayMacFFBGHack {background: url(macFFBgHack.png) repeat;}
34 .TB_overlayBG {
35         background-color:#000;
36         filter:alpha(opacity=75);
37         -moz-opacity: 0.75;
38         opacity: 0.75;
39 }
40
41 * html #TB_overlay { /* ie6 hack */
42      position: absolute;
43      height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
44 }
45
46 #TB_window {
47         position: fixed;
48         background: #ffffff;
49         z-index: 102;
50         color:#000000;
51         display:none;
52         border: 4px solid #525252;
53         text-align:left;
54         top:50%;
55         left:50%;
56 }
57
58 * html #TB_window { /* ie6 hack */
59 position: absolute;
60 margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
61 }
62
63 #TB_window img#TB_Image {
64         display:block;
65         margin: 15px 0 0 15px;
66         border-right: 1px solid #ccc;
67         border-bottom: 1px solid #ccc;
68         border-top: 1px solid #666;
69         border-left: 1px solid #666;
70 }
71
72 #TB_caption{
73         height:25px;
74         padding:7px 30px 10px 25px;
75         float:left;
76 }
77
78 #TB_closeWindow{
79         height:25px;
80         padding:11px 25px 10px 0;
81         float:right;
82 }
83
84 #TB_closeAjaxWindow{
85         padding:6px 10px 0;
86         text-align:right;
87         float:right;
88 }
89
90 #TB_ajaxWindowTitle{
91         float:left;
92         padding:6px 10px 0;
93 }
94
95 #TB_title{
96         background-color:#e8e8e8;
97         height:27px;
98 }
99
100 #TB_ajaxContent{
101         clear:both;
102         padding:2px 15px 15px 15px;
103         overflow:auto;
104         text-align:left;
105         line-height:1.4em;
106 }
107
108 #TB_ajaxContent.TB_modal{
109         padding:15px;
110 }
111
112 #TB_ajaxContent p{
113         padding:5px 0px 5px 0px;
114 }
115
116 #TB_load{
117         position: fixed;
118         display:none;
119         z-index:103;
120         top: 50%;
121         left: 50%;
122         background-color: #E8E8E8;
123         border: 4px solid #525252;
124         margin: -45px 0pt 0pt -125px;
125         padding: 40px 15px 15px;
126 }
127
128 * html #TB_load { /* ie6 hack */
129 position: absolute;
130 margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
131 }
132
133 #TB_HideSelect{
134         z-index:99;
135         position:fixed;
136         top: 0;
137         left: 0;
138         background-color:#fff;
139         border:none;
140         filter:alpha(opacity=0);
141         -moz-opacity: 0;
142         opacity: 0;
143         height:100%;
144         width:100%;
145 }
146
147 * html #TB_HideSelect { /* ie6 hack */
148      position: absolute;
149      height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
150 }
151
152 #TB_iframeContent{
153         clear:both;
154         border:none;
155         margin-bottom:-1px;
156         _margin-bottom:1px;
157 }