|
1 |
|
2 /* ----------------------------------------------------------------------------------------------------------------*/ |
|
3 /* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/ |
|
4 /* ----------------------------------------------------------------------------------------------------------------*/ |
|
5 #TB_window { |
|
6 font: 12px "Lucida Grande", Verdana, Arial, sans-serif; |
|
7 color: #333333; |
|
8 } |
|
9 |
|
10 #TB_secondLine { |
|
11 font: 10px "Lucida Grande", Verdana, Arial, 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 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; |
|
37 filter:alpha(opacity=75); |
|
38 -moz-opacity: 0.75; |
|
39 opacity: 0.75; |
|
40 } |
|
41 |
|
42 * html #TB_overlay { /* ie6 hack */ |
|
43 position: absolute; |
|
44 height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'); |
|
45 } |
|
46 |
|
47 #TB_window { |
|
48 position: fixed; |
|
49 background: #ffffff; |
|
50 z-index: 102; |
|
51 color:#000000; |
|
52 display:none; |
|
53 text-align:left; |
|
54 top:50%; |
|
55 left:50%; |
|
56 border: 1px solid #555; |
|
57 -moz-box-shadow: rgba(0,0,0,1) 0 4px 30px; |
|
58 -webkit-box-shadow: rgba(0,0,0,1) 0 4px 30px; |
|
59 -khtml-box-shadow: rgba(0,0,0,1) 0 4px 30px; |
|
60 box-shadow: rgba(0,0,0,1) 0 4px 30px; |
|
61 } |
|
62 |
|
63 * html #TB_window { /* ie6 hack */ |
|
64 position: absolute; |
|
65 margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px'); |
|
66 } |
|
67 |
|
68 #TB_window img#TB_Image { |
|
69 display:block; |
|
70 margin: 15px 0 0 15px; |
|
71 border-right: 1px solid #ccc; |
|
72 border-bottom: 1px solid #ccc; |
|
73 border-top: 1px solid #666; |
|
74 border-left: 1px solid #666; |
|
75 } |
|
76 |
|
77 #TB_caption{ |
|
78 height:25px; |
|
79 padding:7px 30px 10px 25px; |
|
80 float:left; |
|
81 } |
|
82 |
|
83 #TB_closeWindow{ |
|
84 height:25px; |
|
85 padding:11px 25px 10px 0; |
|
86 float:right; |
|
87 } |
|
88 |
|
89 #TB_closeAjaxWindow{ |
|
90 padding:6px 10px 0; |
|
91 text-align:right; |
|
92 float:right; |
|
93 } |
|
94 |
|
95 #TB_ajaxWindowTitle{ |
|
96 float:left; |
|
97 padding:6px 10px 0; |
|
98 } |
|
99 |
|
100 #TB_title{ |
|
101 background-color:#e8e8e8; |
|
102 height:27px; |
|
103 } |
|
104 |
|
105 #TB_ajaxContent{ |
|
106 clear:both; |
|
107 padding:2px 15px 15px 15px; |
|
108 overflow:auto; |
|
109 text-align:left; |
|
110 line-height:1.4em; |
|
111 } |
|
112 |
|
113 #TB_ajaxContent.TB_modal{ |
|
114 padding:15px; |
|
115 } |
|
116 |
|
117 #TB_ajaxContent p{ |
|
118 padding:5px 0px 5px 0px; |
|
119 } |
|
120 |
|
121 #TB_load{ |
|
122 position: fixed; |
|
123 display:none; |
|
124 z-index:103; |
|
125 top: 50%; |
|
126 left: 50%; |
|
127 background-color: #E8E8E8; |
|
128 border: 1px solid #555; |
|
129 margin: -45px 0pt 0pt -125px; |
|
130 padding: 40px 15px 15px; |
|
131 } |
|
132 |
|
133 * html #TB_load { /* ie6 hack */ |
|
134 position: absolute; |
|
135 margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px'); |
|
136 } |
|
137 |
|
138 #TB_HideSelect{ |
|
139 z-index:99; |
|
140 position:fixed; |
|
141 top: 0; |
|
142 left: 0; |
|
143 background-color:#fff; |
|
144 border:none; |
|
145 filter:alpha(opacity=0); |
|
146 -moz-opacity: 0; |
|
147 opacity: 0; |
|
148 height:100%; |
|
149 width:100%; |
|
150 } |
|
151 |
|
152 * html #TB_HideSelect { /* ie6 hack */ |
|
153 position: absolute; |
|
154 height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'); |
|
155 } |
|
156 |
|
157 #TB_iframeContent{ |
|
158 clear:both; |
|
159 border:none; |
|
160 margin-bottom:-1px; |
|
161 _margin-bottom:1px; |
|
162 } |