author | Dan |
Wed, 26 Aug 2009 13:43:11 -0400 | |
changeset 1107 | 2d37a11fabd8 |
parent 1100 | aead4e1ce5df |
child 1227 | bdac73ed481e |
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 |
||
1107 | 26 |
body#tinymce { |
27 |
background-image: none; |
|
28 |
background-color: #f0f0f0; |
|
29 |
} |
|
30 |
||
921 | 31 |
table#body-wrapper { |
32 |
width: 100%; |
|
33 |
} |
|
34 |
||
35 |
body.simple table#body-wrapper { |
|
36 |
width: 70%; |
|
37 |
margin: 0 auto; |
|
38 |
} |
|
39 |
||
40 |
td#cell-sbleft { |
|
41 |
background-image: url(../images/transb50.png); |
|
42 |
} |
|
43 |
||
44 |
td#cell-content { |
|
45 |
background-color: #fff; |
|
46 |
padding: 0; |
|
47 |
width: 100%; |
|
48 |
} |
|
49 |
||
50 |
/* Global - links */ |
|
51 |
a { |
|
52 |
text-decoration: none; |
|
53 |
} |
|
54 |
||
55 |
a:link, a:visited { |
|
56 |
color: #356a9e; |
|
57 |
} |
|
58 |
||
59 |
div#content-wrapper a:visited { |
|
60 |
color: #4c84bb; |
|
61 |
} |
|
62 |
||
63 |
a:link:hover { |
|
64 |
color: #6a95c0; |
|
65 |
} |
|
66 |
||
67 |
/* Header */ |
|
68 |
div#header { |
|
69 |
line-height: 122px; |
|
70 |
/* background-image: url(../images/top.gif); */ |
|
71 |
background-repeat: repeat-x; |
|
72 |
color: #a9a9a9; |
|
73 |
padding: 0 1.3em; |
|
74 |
} |
|
75 |
||
76 |
body.simple div#header { |
|
77 |
line-height: 78px; |
|
78 |
width: 75%; |
|
79 |
margin: 100px auto 0 auto; |
|
80 |
} |
|
81 |
||
1100
aead4e1ce5df
Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents:
1081
diff
changeset
|
82 |
a.header-placeholder { |
aead4e1ce5df
Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents:
1081
diff
changeset
|
83 |
display: block; |
aead4e1ce5df
Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents:
1081
diff
changeset
|
84 |
width: 60%; |
aead4e1ce5df
Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents:
1081
diff
changeset
|
85 |
min-width: 500px; |
aead4e1ce5df
Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents:
1081
diff
changeset
|
86 |
position: absolute; |
aead4e1ce5df
Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents:
1081
diff
changeset
|
87 |
top: 0; |
aead4e1ce5df
Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents:
1081
diff
changeset
|
88 |
left: 0; |
aead4e1ce5df
Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents:
1081
diff
changeset
|
89 |
} |
aead4e1ce5df
Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents:
1081
diff
changeset
|
90 |
|
921 | 91 |
div#header h1 { |
92 |
margin: 0; |
|
93 |
font-weight: normal; |
|
94 |
} |
|
95 |
||
96 |
div#header h1 a { |
|
97 |
color: white; |
|
98 |
padding-right: 20px; |
|
99 |
} |
|
100 |
||
101 |
div#header h1 a:hover { |
|
102 |
background-image: url(../images/home.gif); |
|
103 |
background-repeat: no-repeat; |
|
104 |
background-position: center right; |
|
105 |
} |
|
106 |
||
107 |
div.logo { |
|
108 |
width: 96px; |
|
109 |
height: 122px; |
|
110 |
background-image: url(../images/logo.png); |
|
111 |
background-position: center center; |
|
112 |
background-repeat: no-repeat; |
|
113 |
float: left; |
|
114 |
margin: 0 7px 0 -13px; |
|
115 |
} |
|
116 |
||
117 |
/* Userlinks */ |
|
118 |
ul.useropts { |
|
119 |
position: absolute; |
|
120 |
margin: 0; |
|
121 |
right: 10px; |
|
122 |
line-height: 19px; |
|
123 |
top: 99px; |
|
124 |
} |
|
125 |
||
126 |
ul.useropts li { |
|
127 |
display: block; |
|
128 |
float: left; |
|
129 |
margin-right: 4px; |
|
130 |
} |
|
131 |
||
132 |
ul.useropts li a { |
|
133 |
color: #a9b2e3; |
|
134 |
display: block; |
|
135 |
padding: 2px 12px; |
|
136 |
background-color: #30475d; |
|
137 |
-moz-border-radius: 6px 6px 0 0; |
|
138 |
border-radius: 6px 6px 0 0; |
|
139 |
} |
|
140 |
||
141 |
ul.useropts li.em a { |
|
142 |
color: #b9d0e3; |
|
143 |
background-color: #405f7c; |
|
144 |
font-weight: bold; |
|
145 |
} |
|
146 |
||
147 |
ul.useropts li:hover { |
|
148 |
position: relative; |
|
149 |
top: -2px; |
|
150 |
} |
|
151 |
||
152 |
ul.useropts li:hover > a { |
|
153 |
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
|
154 |
color: #b9d0e3; |
921 | 155 |
} |
156 |
||
157 |
ul.useropts li.logout:hover > a { |
|
158 |
color: #e9e9e9; |
|
159 |
background-color: #701010; |
|
160 |
} |
|
161 |
||
162 |
/* Search form */ |
|
163 |
||
164 |
form.searchform { |
|
165 |
position: absolute; |
|
166 |
/* background-color: #292929; */ |
|
167 |
background-image: url(../images/transb50.png); |
|
168 |
top: 0px; |
|
169 |
right: 10px; |
|
170 |
padding: 7px; |
|
171 |
text-align: right; |
|
172 |
} |
|
173 |
||
174 |
/* Sidebars */ |
|
175 |
div.sidebar.left { |
|
176 |
width: 150px; |
|
177 |
} |
|
178 |
||
179 |
div.sidebar.right { |
|
180 |
float: right; |
|
181 |
width: 170px; |
|
182 |
margin: 0 0 0 20px; |
|
183 |
} |
|
184 |
||
185 |
div.sidebar.right div.slider { |
|
186 |
padding: 10px; |
|
187 |
background-color: #bed8ef; |
|
188 |
-moz-border-radius: 10px; |
|
189 |
border-radius: 10px; |
|
190 |
} |
|
191 |
||
192 |
div.sidebar h4 { |
|
193 |
margin: 0; |
|
194 |
padding: 5px 3px; |
|
195 |
color: #90B0D0; |
|
196 |
border-bottom: 1px dotted #5b6f80; |
|
197 |
font-size: 10pt; |
|
198 |
} |
|
199 |
||
200 |
div.sidebar div.slider { |
|
201 |
font-size: 8pt; |
|
202 |
} |
|
203 |
||
204 |
div.sidebar h4 a { |
|
205 |
cursor: pointer; |
|
206 |
} |
|
207 |
||
208 |
div.sidebar.right h4 { |
|
209 |
color: #5a87b3; |
|
210 |
} |
|
211 |
||
212 |
div.sidebar ul.linkblock { |
|
213 |
margin: 0; |
|
214 |
padding: 0; |
|
215 |
list-style-type: none; |
|
216 |
} |
|
217 |
||
218 |
div.sidebar ul.linkblock li a { |
|
219 |
display: block; |
|
220 |
color: #b2b2b2; |
|
221 |
padding: 5px 3px 5px 0.9em; |
|
222 |
} |
|
223 |
||
224 |
div.sidebar ul.linkblock li a:hover { |
|
225 |
color: #c5c5c5; |
|
226 |
background-color: #292929; |
|
227 |
} |
|
228 |
||
958 | 229 |
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
|
230 |
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
|
231 |
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
|
232 |
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
|
233 |
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
|
234 |
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
|
235 |
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
|
236 |
-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
|
237 |
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
|
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.sidebar.left a.closebtn { |
241 |
color: #f0f0f0; |
|
242 |
background-color: #404040; |
|
243 |
margin-right: 0px; |
|
244 |
-moz-border-radius: 0 0 0 4px; |
|
965
72b37471cce0
Enanium: left collapse button same size as jBox bars now
Dan
parents:
958
diff
changeset
|
245 |
padding: 1pt 5px; |
72b37471cce0
Enanium: left collapse button same size as jBox bars now
Dan
parents:
958
diff
changeset
|
246 |
font-size: 10pt; |
958 | 247 |
} |
248 |
||
955
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
249 |
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
|
250 |
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
|
251 |
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
|
252 |
} |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
253 |
|
958 | 254 |
div.left-sidebar-hidden { |
255 |
display: none; |
|
256 |
position: absolute; |
|
257 |
} |
|
258 |
||
955
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
259 |
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
|
260 |
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
|
261 |
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
|
262 |
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
|
263 |
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
|
264 |
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
|
265 |
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
|
266 |
-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
|
267 |
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
|
268 |
} |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
269 |
|
958 | 270 |
div.left-sidebar-hidden a.openbtn { |
271 |
display: block; |
|
272 |
float: left; |
|
273 |
margin-top: 1.8em; |
|
274 |
color: #456798; |
|
275 |
background-color: #f0f0f0; |
|
276 |
padding: 5px 4px; |
|
277 |
-moz-border-radius: 0 4px 4px 0; |
|
278 |
cursor: pointer; |
|
279 |
} |
|
280 |
||
921 | 281 |
div.slider { |
282 |
margin-bottom: 7px; |
|
283 |
} |
|
284 |
||
285 |
/* Content area */ |
|
286 |
div#content-wrapper { |
|
287 |
margin: 0; |
|
288 |
padding: 20px; |
|
289 |
} |
|
290 |
||
291 |
div.content { |
|
292 |
/* Though very subtle, this makes the entire theme less harsh especially with Trebuchet. */ |
|
293 |
color: #202020; |
|
294 |
} |
|
295 |
||
296 |
div.content h1, div.content h2 { |
|
297 |
border-bottom: 1px solid #90B0D0; |
|
298 |
margin-top: 0.2em; |
|
299 |
} |
|
300 |
||
1004 | 301 |
div.content h1#h2PageName { |
302 |
margin: 0.2em 0 0 0; |
|
303 |
} |
|
304 |
||
921 | 305 |
div.content p { |
306 |
margin-left: 0.8em; |
|
307 |
} |
|
308 |
||
948 | 309 |
/* Wikilinks to pages that don't exist */ |
310 |
div.content a.wikilink-nonexistent { |
|
311 |
color: #B05020; |
|
312 |
} |
|
313 |
||
314 |
div.content a.wikilink-nonexistent:visited { |
|
977 | 315 |
color: #906030 !important; |
948 | 316 |
} |
317 |
||
1045
ce069a06906c
Enanium: <pre> elements under div.content are now indented
Dan
parents:
1004
diff
changeset
|
318 |
/* 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
|
319 |
This is for consistency between paragraphs and code blocks. */ |
ce069a06906c
Enanium: <pre> elements under div.content are now indented
Dan
parents:
1004
diff
changeset
|
320 |
div.content pre, pre.geshi_highlighted { |
ce069a06906c
Enanium: <pre> elements under div.content are now indented
Dan
parents:
1004
diff
changeset
|
321 |
margin-left: 0.8em; |
ce069a06906c
Enanium: <pre> elements under div.content are now indented
Dan
parents:
1004
diff
changeset
|
322 |
} |
ce069a06906c
Enanium: <pre> elements under div.content are now indented
Dan
parents:
1004
diff
changeset
|
323 |
|
921 | 324 |
/* Inline rename */ |
325 |
||
326 |
input#pageheading { |
|
327 |
font-family: trebuchet ms, verdana, arial, helvetica, sans-serif; |
|
328 |
font-size: 18pt; |
|
329 |
font-weight: bold; |
|
330 |
border-width: 0 0 1px 0; |
|
331 |
width: 100%; |
|
332 |
border-bottom: 1px solid #90B0D0; |
|
333 |
margin: 0; |
|
334 |
padding: 0; |
|
335 |
color: #202020; |
|
336 |
background-color: rgb(240, 240, 240, 0.5); |
|
337 |
} |
|
338 |
||
339 |
input#pageheading:focus { |
|
340 |
background-color: #fafafa; |
|
341 |
} |
|
342 |
||
343 |
/* External links */ |
|
344 |
||
345 |
div.content a[href ^="http://"], div#messageBox a[href ^="http://"] { |
|
346 |
color: #4d78a2; |
|
347 |
background: url(../images/links/external.gif) center right no-repeat; |
|
348 |
padding-right: 16px; |
|
349 |
} |
|
350 |
||
351 |
div.content a[href ^="https://"], div#messageBox a[href ^="https://"] { |
|
352 |
color: #4d78a2; |
|
353 |
background: url(../images/links/https.gif) center right no-repeat; |
|
354 |
padding-right: 16px; |
|
355 |
} |
|
356 |
||
357 |
div.content a[href ^="mailto:"], div#messageBox a[href ^="mailto:"] { |
|
358 |
color: #4d78a2; |
|
359 |
background: url(../images/links/email.gif) center right no-repeat; |
|
360 |
padding-right: 16px; |
|
361 |
} |
|
362 |
||
363 |
div.content a[href ^="irc://"], div#messageBox a[href ^="irc://"] { |
|
364 |
color: #4d78a2; |
|
365 |
background: url(../images/links/irc.gif) center right no-repeat; |
|
366 |
padding-right: 16px; |
|
367 |
} |
|
368 |
||
369 |
div.content a[href ^="http://"]:hover, div#messageBox a[href ^="http://"]:hover { |
|
370 |
color: #6488ad; |
|
371 |
} |
|
372 |
||
373 |
div.content a[href ^="https://"]:hover, div#messageBox a[href ^="https://"]:hover { |
|
374 |
color: #6488ad; |
|
375 |
} |
|
376 |
||
377 |
div.content a[href ^="mailto:"]:hover, div#messageBox a[href ^="mailto:"]:hover { |
|
378 |
color: #6488ad; |
|
379 |
} |
|
380 |
||
381 |
div.content a[href ^="irc://"]:hover, div#messageBox a[href ^="irc://"]:hover { |
|
382 |
color: #6488ad; |
|
383 |
} |
|
384 |
||
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
|
385 |
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
|
386 |
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
|
387 |
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
|
388 |
} |
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 |
|
921 | 390 |
/* Form controls */ |
391 |
input { |
|
392 |
border: 1px solid #353535; |
|
393 |
background-color: #262626; |
|
394 |
color: #b6b6b6; |
|
395 |
font-size: 8pt; |
|
396 |
font-family: arial, helvetica, sans-serif; |
|
397 |
padding: 2px; |
|
398 |
} |
|
399 |
||
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
|
400 |
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
|
401 |
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
|
402 |
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
|
403 |
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
|
404 |
} |
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
|
405 |
|
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
|
406 |
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
|
407 |
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
|
408 |
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
|
409 |
} |
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
|
410 |
|
921 | 411 |
/* Footer */ |
412 |
div#footer { |
|
413 |
margin: 7px 0 0 0; |
|
414 |
border-top: 1px solid #707070; |
|
415 |
background-color: #000; |
|
416 |
color: #909090; |
|
417 |
padding: 4px; |
|
418 |
font-size: smaller; |
|
419 |
font-family: tahoma, arial, sans-serif; |
|
420 |
} |
|
421 |
||
422 |
body.simple div#footer { |
|
423 |
position: absolute; |
|
424 |
bottom: 0px; |
|
425 |
padding: 4px 0; |
|
426 |
width: 100%; |
|
427 |
} |
|
428 |
||
429 |
/* |
|
430 |
* Userpage styles |
|
431 |
*/ |
|
432 |
||
433 |
ul.userpage_links li { |
|
434 |
background-image: url('../images/buttonbg.gif'); |
|
435 |
background-repeat: repeat-x; |
|
436 |
} |
|
437 |
||
438 |
ul.userpage_links li a { |
|
439 |
color: #202020; |
|
440 |
} |
|
441 |
||
442 |
ul.userpage_links li.userpage_tab_active { |
|
443 |
background-image: url('../images/buttonbg-lite.gif'); |
|
444 |
} |
|
445 |
||
446 |
ul.userpage_links li:hover { |
|
447 |
background-image: url('../images/buttonbg-lite.gif'); |
|
448 |
border-color: #404040 #404040 #ffffff #404040; |
|
449 |
} |
|
450 |
||
451 |
ul.userpage_links li.userpage_tab_active:hover { |
|
452 |
} |
|
453 |
||
454 |
ul.userpage_links li a:visited, ul.userpage_links li a:hover { |
|
455 |
color: #202020 !important; |
|
456 |
} |
|
958 | 457 |
|
458 |
/* |
|
459 |
* Some table stuff |
|
460 |
*/ |
|
461 |
||
462 |
div.tblholder th a { |
|
463 |
text-decoration: underline; |
|
464 |
color: #f0f0f0 !important; |
|
465 |
} |
|
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
|
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 |
/* |
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 |
* 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
|
469 |
*/ |
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 |
|
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 |
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
|
472 |
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
|
473 |
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
|
474 |
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
|
475 |
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
|
476 |
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
|
477 |
} |
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 |
.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
|
479 |
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
|
480 |
} |
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 |
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
|
482 |
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
|
483 |
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
|
484 |
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
|
485 |
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
|
486 |
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
|
487 |
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
|
488 |
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
|
489 |
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
|
490 |
} |
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 |
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
|
492 |
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
|
493 |
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
|
494 |
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
|
495 |
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
|
496 |
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
|
497 |
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
|
498 |
} |
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 |
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
|
500 |
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
|
501 |
} |
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 |
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
|
503 |
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
|
504 |
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
|
505 |
} |
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 |
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
|
507 |
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
|
508 |
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
|
509 |
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
|
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 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
|
512 |
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
|
513 |
} |
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 |
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
|
515 |
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
|
516 |
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
|
517 |
} |
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 |
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
|
519 |
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
|
520 |
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
|
521 |
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
|
522 |
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
|
523 |
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
|
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 ^="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
|
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: 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
|
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 |
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
|
531 |
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
|
532 |
} |
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 |
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
|
534 |
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
|
535 |
} |
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 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
|
537 |
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
|
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 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
|
540 |
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
|
541 |
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
|
542 |
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
|
543 |
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
|
544 |
} |
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 |
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
|
546 |
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
|
547 |
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
|
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.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
|
550 |
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
|
551 |
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
|
552 |
} |
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 |
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
|
554 |
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
|
555 |
} |
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 |
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
|
557 |
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
|
558 |
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
|
559 |
} |
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 |
|
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 |
/* 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
|
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 { |
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 |
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
|
565 |
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
|
566 |
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
|
567 |
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
|
568 |
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
|
569 |
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
|
570 |
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
|
571 |
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
|
572 |
} |
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 |
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
|
574 |
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
|
575 |
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
|
576 |
} |
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 |
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
|
578 |
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
|
579 |
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
|
580 |
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
|
581 |
} |
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 |
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
|
583 |
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
|
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 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
|
586 |
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
|
587 |
} |
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 |
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
|
589 |
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
|
590 |
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
|
591 |
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
|
592 |
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
|
593 |
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
|
594 |
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
|
595 |
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
|
596 |
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
|
597 |
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
|
598 |
} |
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 |
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
|
600 |
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
|
601 |
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
|
602 |
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
|
603 |
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
|
604 |
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
|
605 |
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
|
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: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
|
608 |
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
|
609 |
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
|
610 |
} |
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 |
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
|
612 |
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
|
613 |
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
|
614 |
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
|
615 |
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
|
616 |
} |
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 |
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
|
618 |
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
|
619 |
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
|
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 |
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
|
622 |
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
|
623 |
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
|
624 |
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
|
625 |
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
|
626 |
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
|
627 |
} |
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 |
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
|
629 |
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
|
630 |
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
|
631 |
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
|
632 |
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
|
633 |
} |
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 |
/* 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
|
636 |
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
|
637 |
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
|
638 |
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
|
639 |
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
|
640 |
} |
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 |
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
|
642 |
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
|
643 |
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
|
644 |
} |
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 |
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
|
646 |
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
|
647 |
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
|
648 |
} |
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 |
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
|
650 |
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
|
651 |
/*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
|
652 |
} |
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 |
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
|
654 |
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
|
655 |
/*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
|
656 |
} |
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 |
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
|
658 |
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
|
659 |
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
|
660 |
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
|
661 |
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
|
662 |
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
|
663 |
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
|
664 |
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
|
665 |
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
|
666 |
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
|
667 |
} |
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 |
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
|
669 |
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
|
670 |
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
|
671 |
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
|
672 |
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
|
673 |
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
|
674 |
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
|
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 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
|
677 |
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
|
678 |
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
|
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 |
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
|
681 |
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
|
682 |
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
|
683 |
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
|
684 |
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
|
685 |
} |
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
|
686 |
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
|
687 |
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
|
688 |
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
|
689 |
} |
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
|
690 |
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
|
691 |
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
|
692 |
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
|
693 |
} |
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
|
694 |
|
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
|
695 |
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
|
696 |
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
|
697 |
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
|
698 |
} |
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
|
699 |