author | Dan |
Thu, 20 Aug 2009 20:01:55 -0400 | |
changeset 1081 | 745200a9cc2a |
parent 1075 | f4b89aa4226d |
child 1100 | aead4e1ce5df |
permissions | -rw-r--r-- |
921 | 1 |
/** |
2 |
* Enanium - Baby Grand |
|
3 |
* Polished black default theme for Enano CMS |
|
4 |
* Copyright (C) 2009 Dan Fuhry |
|
5 |
*/ |
|
6 |
||
7 |
/* Core definitions - structure */ |
|
8 |
||
9 |
html, body { |
|
10 |
margin: 0; |
|
11 |
padding: 0; |
|
12 |
} |
|
13 |
||
14 |
div { |
|
15 |
margin: 0; |
|
16 |
padding: 0; |
|
17 |
} |
|
18 |
||
19 |
body { |
|
20 |
background-image: url(../images/background.gif); |
|
21 |
background-color: #2a2a29; |
|
22 |
font-family: trebuchet ms, verdana, tahoma, arial, helvetica, sans-serif; |
|
23 |
font-size: 9pt; |
|
24 |
} |
|
25 |
||
26 |
table#body-wrapper { |
|
27 |
width: 100%; |
|
28 |
} |
|
29 |
||
30 |
body.simple table#body-wrapper { |
|
31 |
width: 70%; |
|
32 |
margin: 0 auto; |
|
33 |
} |
|
34 |
||
35 |
td#cell-sbleft { |
|
36 |
background-image: url(../images/transb50.png); |
|
37 |
} |
|
38 |
||
39 |
td#cell-content { |
|
40 |
background-color: #fff; |
|
41 |
padding: 0; |
|
42 |
width: 100%; |
|
43 |
} |
|
44 |
||
45 |
/* Global - links */ |
|
46 |
a { |
|
47 |
text-decoration: none; |
|
48 |
} |
|
49 |
||
50 |
a:link, a:visited { |
|
51 |
color: #356a9e; |
|
52 |
} |
|
53 |
||
54 |
div#content-wrapper a:visited { |
|
55 |
color: #4c84bb; |
|
56 |
} |
|
57 |
||
58 |
a:link:hover { |
|
59 |
color: #6a95c0; |
|
60 |
} |
|
61 |
||
62 |
/* Header */ |
|
63 |
div#header { |
|
64 |
line-height: 122px; |
|
65 |
/* background-image: url(../images/top.gif); */ |
|
66 |
background-repeat: repeat-x; |
|
67 |
color: #a9a9a9; |
|
68 |
padding: 0 1.3em; |
|
69 |
} |
|
70 |
||
71 |
body.simple div#header { |
|
72 |
line-height: 78px; |
|
73 |
width: 75%; |
|
74 |
margin: 100px auto 0 auto; |
|
75 |
} |
|
76 |
||
77 |
div#header h1 { |
|
78 |
margin: 0; |
|
79 |
font-weight: normal; |
|
80 |
} |
|
81 |
||
82 |
div#header h1 a { |
|
83 |
color: white; |
|
84 |
padding-right: 20px; |
|
85 |
} |
|
86 |
||
87 |
div#header h1 a:hover { |
|
88 |
background-image: url(../images/home.gif); |
|
89 |
background-repeat: no-repeat; |
|
90 |
background-position: center right; |
|
91 |
} |
|
92 |
||
93 |
div.logo { |
|
94 |
width: 96px; |
|
95 |
height: 122px; |
|
96 |
background-image: url(../images/logo.png); |
|
97 |
background-position: center center; |
|
98 |
background-repeat: no-repeat; |
|
99 |
float: left; |
|
100 |
margin: 0 7px 0 -13px; |
|
101 |
} |
|
102 |
||
103 |
/* Userlinks */ |
|
104 |
ul.useropts { |
|
105 |
position: absolute; |
|
106 |
margin: 0; |
|
107 |
right: 10px; |
|
108 |
line-height: 19px; |
|
109 |
top: 99px; |
|
110 |
} |
|
111 |
||
112 |
ul.useropts li { |
|
113 |
display: block; |
|
114 |
float: left; |
|
115 |
margin-right: 4px; |
|
116 |
} |
|
117 |
||
118 |
ul.useropts li a { |
|
119 |
color: #a9b2e3; |
|
120 |
display: block; |
|
121 |
padding: 2px 12px; |
|
122 |
background-color: #30475d; |
|
123 |
-moz-border-radius: 6px 6px 0 0; |
|
124 |
border-radius: 6px 6px 0 0; |
|
125 |
} |
|
126 |
||
127 |
ul.useropts li.em a { |
|
128 |
color: #b9d0e3; |
|
129 |
background-color: #405f7c; |
|
130 |
font-weight: bold; |
|
131 |
} |
|
132 |
||
133 |
ul.useropts li:hover { |
|
134 |
position: relative; |
|
135 |
top: -2px; |
|
136 |
} |
|
137 |
||
138 |
ul.useropts li:hover > a { |
|
139 |
padding: 2px 12px 4px 12px; |
|
1081
745200a9cc2a
Fixed some upgrade bugs; added support for choosing one's own date/time formats; rebrand as 1.1.7
Dan
parents:
1075
diff
changeset
|
140 |
color: #b9d0e3; |
921 | 141 |
} |
142 |
||
143 |
ul.useropts li.logout:hover > a { |
|
144 |
color: #e9e9e9; |
|
145 |
background-color: #701010; |
|
146 |
} |
|
147 |
||
148 |
/* Search form */ |
|
149 |
||
150 |
form.searchform { |
|
151 |
position: absolute; |
|
152 |
/* background-color: #292929; */ |
|
153 |
background-image: url(../images/transb50.png); |
|
154 |
top: 0px; |
|
155 |
right: 10px; |
|
156 |
padding: 7px; |
|
157 |
text-align: right; |
|
158 |
} |
|
159 |
||
160 |
/* Sidebars */ |
|
161 |
div.sidebar.left { |
|
162 |
width: 150px; |
|
163 |
} |
|
164 |
||
165 |
div.sidebar.right { |
|
166 |
float: right; |
|
167 |
width: 170px; |
|
168 |
margin: 0 0 0 20px; |
|
169 |
} |
|
170 |
||
171 |
div.sidebar.right div.slider { |
|
172 |
padding: 10px; |
|
173 |
background-color: #bed8ef; |
|
174 |
-moz-border-radius: 10px; |
|
175 |
border-radius: 10px; |
|
176 |
} |
|
177 |
||
178 |
div.sidebar h4 { |
|
179 |
margin: 0; |
|
180 |
padding: 5px 3px; |
|
181 |
color: #90B0D0; |
|
182 |
border-bottom: 1px dotted #5b6f80; |
|
183 |
font-size: 10pt; |
|
184 |
} |
|
185 |
||
186 |
div.sidebar div.slider { |
|
187 |
font-size: 8pt; |
|
188 |
} |
|
189 |
||
190 |
div.sidebar h4 a { |
|
191 |
cursor: pointer; |
|
192 |
} |
|
193 |
||
194 |
div.sidebar.right h4 { |
|
195 |
color: #5a87b3; |
|
196 |
} |
|
197 |
||
198 |
div.sidebar ul.linkblock { |
|
199 |
margin: 0; |
|
200 |
padding: 0; |
|
201 |
list-style-type: none; |
|
202 |
} |
|
203 |
||
204 |
div.sidebar ul.linkblock li a { |
|
205 |
display: block; |
|
206 |
color: #b2b2b2; |
|
207 |
padding: 5px 3px 5px 0.9em; |
|
208 |
} |
|
209 |
||
210 |
div.sidebar ul.linkblock li a:hover { |
|
211 |
color: #c5c5c5; |
|
212 |
background-color: #292929; |
|
213 |
} |
|
214 |
||
958 | 215 |
div.sidebar a.closebtn { |
955
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
216 |
display: block; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
217 |
float: right; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
218 |
margin-right: 10px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
219 |
color: #456798; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
220 |
background-color: #f0f0f0; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
221 |
padding: 0 8px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
222 |
-moz-border-radius: 0 0 4px 4px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
223 |
cursor: pointer; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
224 |
} |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
225 |
|
958 | 226 |
div.sidebar.left a.closebtn { |
227 |
color: #f0f0f0; |
|
228 |
background-color: #404040; |
|
229 |
margin-right: 0px; |
|
230 |
-moz-border-radius: 0 0 0 4px; |
|
965
72b37471cce0
Enanium: left collapse button same size as jBox bars now
Dan
parents:
958
diff
changeset
|
231 |
padding: 1pt 5px; |
72b37471cce0
Enanium: left collapse button same size as jBox bars now
Dan
parents:
958
diff
changeset
|
232 |
font-size: 10pt; |
958 | 233 |
} |
234 |
||
955
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
235 |
div.right-sidebar-hidden { |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
236 |
margin-left: 10px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
237 |
display: none; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
238 |
} |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
239 |
|
958 | 240 |
div.left-sidebar-hidden { |
241 |
display: none; |
|
242 |
position: absolute; |
|
243 |
} |
|
244 |
||
955
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
245 |
div.right-sidebar-hidden a.openbtn { |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
246 |
display: block; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
247 |
float: right; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
248 |
margin-right: -20px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
249 |
color: #456798; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
250 |
background-color: #f0f0f0; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
251 |
padding: 5px 8px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
252 |
-moz-border-radius: 4px 0 0 4px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
253 |
cursor: pointer; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
254 |
} |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
255 |
|
958 | 256 |
div.left-sidebar-hidden a.openbtn { |
257 |
display: block; |
|
258 |
float: left; |
|
259 |
margin-top: 1.8em; |
|
260 |
color: #456798; |
|
261 |
background-color: #f0f0f0; |
|
262 |
padding: 5px 4px; |
|
263 |
-moz-border-radius: 0 4px 4px 0; |
|
264 |
cursor: pointer; |
|
265 |
} |
|
266 |
||
921 | 267 |
div.slider { |
268 |
margin-bottom: 7px; |
|
269 |
} |
|
270 |
||
271 |
/* Content area */ |
|
272 |
div#content-wrapper { |
|
273 |
margin: 0; |
|
274 |
padding: 20px; |
|
275 |
} |
|
276 |
||
277 |
div.content { |
|
278 |
/* Though very subtle, this makes the entire theme less harsh especially with Trebuchet. */ |
|
279 |
color: #202020; |
|
280 |
} |
|
281 |
||
282 |
div.content h1, div.content h2 { |
|
283 |
border-bottom: 1px solid #90B0D0; |
|
284 |
margin-top: 0.2em; |
|
285 |
} |
|
286 |
||
1004 | 287 |
div.content h1#h2PageName { |
288 |
margin: 0.2em 0 0 0; |
|
289 |
} |
|
290 |
||
921 | 291 |
div.content p { |
292 |
margin-left: 0.8em; |
|
293 |
} |
|
294 |
||
948 | 295 |
/* Wikilinks to pages that don't exist */ |
296 |
div.content a.wikilink-nonexistent { |
|
297 |
color: #B05020; |
|
298 |
} |
|
299 |
||
300 |
div.content a.wikilink-nonexistent:visited { |
|
977 | 301 |
color: #906030 !important; |
948 | 302 |
} |
303 |
||
1045
ce069a06906c
Enanium: <pre> elements under div.content are now indented
Dan
parents:
1004
diff
changeset
|
304 |
/* I know it's bad to support plugins in core code, but indented paragraphs tend to be specific to themes I designed. |
ce069a06906c
Enanium: <pre> elements under div.content are now indented
Dan
parents:
1004
diff
changeset
|
305 |
This is for consistency between paragraphs and code blocks. */ |
ce069a06906c
Enanium: <pre> elements under div.content are now indented
Dan
parents:
1004
diff
changeset
|
306 |
div.content pre, pre.geshi_highlighted { |
ce069a06906c
Enanium: <pre> elements under div.content are now indented
Dan
parents:
1004
diff
changeset
|
307 |
margin-left: 0.8em; |
ce069a06906c
Enanium: <pre> elements under div.content are now indented
Dan
parents:
1004
diff
changeset
|
308 |
} |
ce069a06906c
Enanium: <pre> elements under div.content are now indented
Dan
parents:
1004
diff
changeset
|
309 |
|
921 | 310 |
/* Inline rename */ |
311 |
||
312 |
input#pageheading { |
|
313 |
font-family: trebuchet ms, verdana, arial, helvetica, sans-serif; |
|
314 |
font-size: 18pt; |
|
315 |
font-weight: bold; |
|
316 |
border-width: 0 0 1px 0; |
|
317 |
width: 100%; |
|
318 |
border-bottom: 1px solid #90B0D0; |
|
319 |
margin: 0; |
|
320 |
padding: 0; |
|
321 |
color: #202020; |
|
322 |
background-color: rgb(240, 240, 240, 0.5); |
|
323 |
} |
|
324 |
||
325 |
input#pageheading:focus { |
|
326 |
background-color: #fafafa; |
|
327 |
} |
|
328 |
||
329 |
/* External links */ |
|
330 |
||
331 |
div.content a[href ^="http://"], div#messageBox a[href ^="http://"] { |
|
332 |
color: #4d78a2; |
|
333 |
background: url(../images/links/external.gif) center right no-repeat; |
|
334 |
padding-right: 16px; |
|
335 |
} |
|
336 |
||
337 |
div.content a[href ^="https://"], div#messageBox a[href ^="https://"] { |
|
338 |
color: #4d78a2; |
|
339 |
background: url(../images/links/https.gif) center right no-repeat; |
|
340 |
padding-right: 16px; |
|
341 |
} |
|
342 |
||
343 |
div.content a[href ^="mailto:"], div#messageBox a[href ^="mailto:"] { |
|
344 |
color: #4d78a2; |
|
345 |
background: url(../images/links/email.gif) center right no-repeat; |
|
346 |
padding-right: 16px; |
|
347 |
} |
|
348 |
||
349 |
div.content a[href ^="irc://"], div#messageBox a[href ^="irc://"] { |
|
350 |
color: #4d78a2; |
|
351 |
background: url(../images/links/irc.gif) center right no-repeat; |
|
352 |
padding-right: 16px; |
|
353 |
} |
|
354 |
||
355 |
div.content a[href ^="http://"]:hover, div#messageBox a[href ^="http://"]:hover { |
|
356 |
color: #6488ad; |
|
357 |
} |
|
358 |
||
359 |
div.content a[href ^="https://"]:hover, div#messageBox a[href ^="https://"]:hover { |
|
360 |
color: #6488ad; |
|
361 |
} |
|
362 |
||
363 |
div.content a[href ^="mailto:"]:hover, div#messageBox a[href ^="mailto:"]:hover { |
|
364 |
color: #6488ad; |
|
365 |
} |
|
366 |
||
367 |
div.content a[href ^="irc://"]:hover, div#messageBox a[href ^="irc://"]:hover { |
|
368 |
color: #6488ad; |
|
369 |
} |
|
370 |
||
1075
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
371 |
div.content a.no_external, div#messageBox a.no_external { |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
372 |
background-image: none; |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
373 |
padding-right: 0px; |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
374 |
} |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
375 |
|
921 | 376 |
/* Form controls */ |
377 |
input { |
|
378 |
border: 1px solid #353535; |
|
379 |
background-color: #262626; |
|
380 |
color: #b6b6b6; |
|
381 |
font-size: 8pt; |
|
382 |
font-family: arial, helvetica, sans-serif; |
|
383 |
padding: 2px; |
|
384 |
} |
|
385 |
||
1075
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
386 |
div#messageBox input[type ^="text"], div#messageBox input[type ^="password"] { |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
387 |
background-color: #f4f4f4; |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
388 |
color: #202020; |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
389 |
border: 1px solid #aaa; |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
390 |
} |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
391 |
|
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
392 |
div#messageBox input[type ^="text"]:focus, div#messageBox input[type ^="password"]:focus { |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
393 |
background-color: #fff; |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
394 |
border-color: #888; |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
395 |
} |
f4b89aa4226d
Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents:
1057
diff
changeset
|
396 |
|
921 | 397 |
/* Footer */ |
398 |
div#footer { |
|
399 |
margin: 7px 0 0 0; |
|
400 |
border-top: 1px solid #707070; |
|
401 |
background-color: #000; |
|
402 |
color: #909090; |
|
403 |
padding: 4px; |
|
404 |
font-size: smaller; |
|
405 |
font-family: tahoma, arial, sans-serif; |
|
406 |
} |
|
407 |
||
408 |
body.simple div#footer { |
|
409 |
position: absolute; |
|
410 |
bottom: 0px; |
|
411 |
padding: 4px 0; |
|
412 |
width: 100%; |
|
413 |
} |
|
414 |
||
415 |
/* |
|
416 |
* Userpage styles |
|
417 |
*/ |
|
418 |
||
419 |
ul.userpage_links li { |
|
420 |
background-image: url('../images/buttonbg.gif'); |
|
421 |
background-repeat: repeat-x; |
|
422 |
} |
|
423 |
||
424 |
ul.userpage_links li a { |
|
425 |
color: #202020; |
|
426 |
} |
|
427 |
||
428 |
ul.userpage_links li.userpage_tab_active { |
|
429 |
background-image: url('../images/buttonbg-lite.gif'); |
|
430 |
} |
|
431 |
||
432 |
ul.userpage_links li:hover { |
|
433 |
background-image: url('../images/buttonbg-lite.gif'); |
|
434 |
border-color: #404040 #404040 #ffffff #404040; |
|
435 |
} |
|
436 |
||
437 |
ul.userpage_links li.userpage_tab_active:hover { |
|
438 |
} |
|
439 |
||
440 |
ul.userpage_links li a:visited, ul.userpage_links li a:hover { |
|
441 |
color: #202020 !important; |
|
442 |
} |
|
958 | 443 |
|
444 |
/* |
|
445 |
* Some table stuff |
|
446 |
*/ |
|
447 |
||
448 |
div.tblholder th a { |
|
449 |
text-decoration: underline; |
|
450 |
color: #f0f0f0 !important; |
|
451 |
} |
|
1050
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
452 |
|
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
453 |
/* |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
454 |
* jBox menu system |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
455 |
*/ |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
456 |
|
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
457 |
div.menu, div.menu_nojs { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
458 |
background-image: url(../images/jbox.gif); |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
459 |
background-repeat: repeat-x; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
460 |
background-color: #303030; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
461 |
font-size: 7pt; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
462 |
border-width: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
463 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
464 |
.menu_bg { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
465 |
background-color: #303030; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
466 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
467 |
div.menu ul, div.menu_nojs ul { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
468 |
display: none; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
469 |
position: absolute; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
470 |
padding: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
471 |
margin: 0 !important; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
472 |
background-color: #303030; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
473 |
border-width: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
474 |
min-width: 120px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
475 |
text-transform: lowercase; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
476 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
477 |
div.menu a, div.menu div.label, div.menu_nojs a, div.menu_nojs div.label { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
478 |
padding: 2.5pt 5px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
479 |
margin-right: 3px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
480 |
text-decoration: none; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
481 |
display: block; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
482 |
float: left; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
483 |
color: #b2b2b2; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
484 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
485 |
div#content-wrapper div.menu a, div#content-wrapper div.menu_nojs a { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
486 |
color: #b2b2b2; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
487 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
488 |
div.menu div.label, div.menu_nojs div.label { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
489 |
color: #808080; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
490 |
cursor: default; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
491 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
492 |
div.menu span.sep, div.menu_nojs span.sep { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
493 |
display: block; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
494 |
float: left; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
495 |
width: 5px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
496 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
497 |
div.menu div.multopts, div.menu_nojs div.multopts { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
498 |
line-height: 17pt; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
499 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
500 |
div.menu div.multopts a, div.menu div.multopts div.label, div.menu_nojs div.multopts a, div.menu_nojs div.multopts div.label { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
501 |
float: none; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
502 |
display: inline; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
503 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
504 |
div.menu a.liteselected, div.menu a.liteselected:hover, div.menu a:hover, div.menu_nojs a.liteselected, div.menu_nojs a.liteselected:hover, div.menu_nojs a:hover { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
505 |
color: #c9c9c9; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
506 |
background-color: #484848; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
507 |
background-image: url(../images/jbox.gif); |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
508 |
background-position: 0 -32px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
509 |
background-repeat: repeat-x; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
510 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
511 |
div.menu input[type ^="text"], div.menu input[type ^="password"], div.menu_nojs input[type ^="text"], div.menu_nojs input[type ^="password"] { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
512 |
border-width: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
513 |
font-size: 9pt; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
514 |
padding: 2px 5px 3px 5px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
515 |
max-width: 70px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
516 |
color: #a9a9a9; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
517 |
background-color: #191919; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
518 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
519 |
div.menu input[type ^="text"]:hover, div.menu input[type ^="password"]:hover, div.menu_nojs input[type ^="text"]:hover, div.menu_nojs input[type ^="password"]:hover { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
520 |
background-color: #292929; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
521 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
522 |
div.menu input[type ^="text"]:focus, div.menu input[type ^="password"]:focus, div.menu_nojs input[type ^="text"]:focus, div.menu_nojs input[type ^="password"]:focus { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
523 |
background-color: #373737; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
524 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
525 |
div.menu input[type ^="button"], div.menu input[type ^="submit"], div.menu_nojs input[type ^="button"], div.menu_nojs input[type ^="submit"] { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
526 |
border-width: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
527 |
font-size: 9pt; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
528 |
padding: 3px 5px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
529 |
max-width: 70px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
530 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
531 |
div.menu a.current, div.menu a.current:hover, div.menu a.selected, div.menu a.selected:hover, div.menu_nojs a.current, div.menu_nojs a.current:hover, div.menu_nojs a.selected, div.menu_nojs a.selected:hover { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
532 |
color: #202020; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
533 |
background-color: #FFFFFF; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
534 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
535 |
div.menu a.current:hover, div.menu a.selected:hover, div.menu a.current.liteselected, |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
536 |
div.menu_nojs a.current:hover, div.menu_nojs a.selected:hover, div.menu_nojs a.current.liteselected { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
537 |
background-position: 0 -64px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
538 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
539 |
div.menu ul li, div.menu_nojs ul li { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
540 |
list-style: none; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
541 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
542 |
div.menu ul a, div.menu_nojs ul a { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
543 |
float: none; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
544 |
margin: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
545 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
546 |
|
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
547 |
/* toolbar */ |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
548 |
|
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
549 |
div.toolbar { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
550 |
border: 1px solid #3b619c; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
551 |
background-color: #D0D0D0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
552 |
background-image: url(../../oxygen/images/bleu/sprite-horiz.gif); |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
553 |
background-position: 0 -90px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
554 |
padding: 1px 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
555 |
height: 22px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
556 |
font-family: arial, sans-serif; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
557 |
font-size: 8pt; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
558 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
559 |
div.toolbar ul { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
560 |
margin: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
561 |
padding: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
562 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
563 |
div.toolbar ul li { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
564 |
list-style: none; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
565 |
margin: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
566 |
float: left; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
567 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
568 |
div.toolbar a img { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
569 |
opacity: 0.6; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
570 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
571 |
div.toolbar a:hover img, div.toolbar a:focus img { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
572 |
opacity: 1; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
573 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
574 |
div.toolbar a { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
575 |
display: block; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
576 |
padding: 2px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
577 |
border: 1px solid transparent; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
578 |
cursor: default; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
579 |
width: auto; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
580 |
color: #000000 !important; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
581 |
margin: 0 2px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
582 |
max-height: 16px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
583 |
text-decoration: none; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
584 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
585 |
div.toolbar a:hover, div.toolbar a:focus { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
586 |
border: 1px solid #000080; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
587 |
background-color: #ceceed; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
588 |
background-image: url(../../oxygen/images/bleu/sprite-horiz.gif); |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
589 |
background-position: 0 -118px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
590 |
color: #000000 !important; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
591 |
text-decoration: none; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
592 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
593 |
div.toolbar a:active { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
594 |
background-color: #E0E0E0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
595 |
background-position: 0 -138px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
596 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
597 |
div.toolbar img { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
598 |
margin: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
599 |
padding: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
600 |
display: inline; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
601 |
border-width: 0px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
602 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
603 |
div.toolbar a span { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
604 |
position: relative; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
605 |
top: -3px !important; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
606 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
607 |
div.toolbar a span.noimage { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
608 |
position: relative; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
609 |
top: 0px !important; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
610 |
height: 16px !important; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
611 |
display: block; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
612 |
padding-left: 2px !important; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
613 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
614 |
div.toolbar li span { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
615 |
padding-left: 4px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
616 |
padding-right: 2px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
617 |
position: relative; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
618 |
top: 4px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
619 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
620 |
|
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
621 |
/* vertical toolbar */ |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
622 |
div.toolbar_vert { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
623 |
border: 1px solid #82aae2; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
624 |
background-color: #c9ddf8; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
625 |
padding: 2px 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
626 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
627 |
div.toolbar_vert ul { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
628 |
margin: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
629 |
padding: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
630 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
631 |
div.toolbar_vert ul li { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
632 |
list-style: none; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
633 |
margin: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
634 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
635 |
div.toolbar_vert a img { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
636 |
opacity: 0.6; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
637 |
/*filter: alpha(opacity=60);*/ |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
638 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
639 |
div.toolbar_vert a:hover img { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
640 |
opacity: 1; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
641 |
/*filter: alpha(opacity=100);*/ |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
642 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
643 |
div.toolbar_vert a { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
644 |
display: block; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
645 |
padding: 2px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
646 |
border: 1px solid transparent; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
647 |
cursor: default; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
648 |
width: auto; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
649 |
color: #000000 !important; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
650 |
margin: 0 2px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
651 |
max-height: 16px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
652 |
text-decoration: none; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
653 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
654 |
div.toolbar_vert a:hover { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
655 |
border: 1px solid #202090; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
656 |
background-color: #ceceed; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
657 |
color: #000000 !important; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
658 |
text-decoration: none; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
659 |
background-image: url(../../oxygen/images/bleu/sprite-horiz.gif); |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
660 |
background-position: 0 -118px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
661 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
662 |
div.toolbar_vert a:active { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
663 |
border: 1px solid #A0A0A0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
664 |
background-color: #E0E0E0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
665 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
666 |
div.toolbar_vert img { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
667 |
margin: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
668 |
padding: 0; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
669 |
display: inline; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
670 |
border-width: 0px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
671 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
672 |
div.toolbar_vert a span { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
673 |
position: relative; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
674 |
top: -4px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
675 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
676 |
div.toolbar_vert li span { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
677 |
padding-left: 2px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
678 |
padding-right: 5px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
679 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
680 |
|
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
681 |
div.toolbar_vert li > span { |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
682 |
display: block; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
683 |
padding: 4px 5px; |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
684 |
} |
94d835500d5b
Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents:
1045
diff
changeset
|
685 |