author | Dan |
Thu, 04 Oct 2007 08:22:25 -0400 | |
changeset 161 | bed9d04fa144 |
parent 51 | 436e7a3a4013 |
child 335 | 67bd3121a12e |
permissions | -rw-r--r-- |
0 | 1 |
/* |
2 |
* St. Patty theme for Enano |
|
3 |
* Copyright (C) 2007 Dan Fuhry |
|
4 |
* |
|
5 |
* This theme is Free Software, available under the terms of the GNU General Public License. See the file "GPL" included with this |
|
6 |
* package for details. |
|
7 |
* |
|
8 |
* Some ideas - most notably the hatching patterns and floating divs, were taken from Bittersweet <http://templates.arcsin.se/> |
|
9 |
* No code or graphics were copied. |
|
10 |
*/ |
|
11 |
||
12 |
html,body { |
|
13 |
margin: 0; |
|
14 |
padding: 0; |
|
15 |
height: 100%; |
|
16 |
} |
|
17 |
body { |
|
18 |
background-color: #101d14; |
|
161
bed9d04fa144
Fixed text colors on pages when dark system themes are used (bug could be seen using MurrinaNightOrange on an Ubuntu system)
Dan
parents:
51
diff
changeset
|
19 |
/* color added in 1.0.2 to fix light text in dark desktop themes */ |
bed9d04fa144
Fixed text colors on pages when dark system themes are used (bug could be seen using MurrinaNightOrange on an Ubuntu system)
Dan
parents:
51
diff
changeset
|
20 |
color: #202020; |
0 | 21 |
background-image: url(../images/bghatching.gif); |
22 |
background-repeat: repeat; |
|
23 |
font-family: "Lucida Sans Unicode", sans-serif; |
|
24 |
font-size: 75%; |
|
25 |
} |
|
26 |
div#bg { |
|
27 |
min-height: 500px; |
|
28 |
width: 100%; |
|
29 |
background-image: url(../images/bgfade.png); |
|
30 |
background-repeat: repeat-x; |
|
31 |
} |
|
32 |
div#rap { |
|
33 |
width: 760px; |
|
34 |
padding: 0 10px; |
|
35 |
margin: 0 auto; |
|
36 |
background-image: url(../images/rap.png); |
|
37 |
} |
|
38 |
div#title { |
|
39 |
margin: 0px; |
|
40 |
padding: 0px; |
|
41 |
background-color: #6abd2b; |
|
42 |
background-image: url(../images/header.gif); |
|
43 |
background-repeat: repeat-x; |
|
44 |
border-bottom: 1px solid #237000; |
|
45 |
vertical-align: middle; |
|
46 |
} |
|
47 |
div#title h1 { |
|
48 |
margin: 0px 10px 10px 10px; |
|
49 |
padding-top: 30px; |
|
50 |
text-align: left; |
|
51 |
} |
|
52 |
div#title h2 { |
|
53 |
margin: 0px 10px 0px 10px; |
|
54 |
padding-bottom: 40px; |
|
55 |
text-align: left; |
|
56 |
} |
|
57 |
div#title img#clover { |
|
58 |
float: right; |
|
59 |
margin-right: 10px; |
|
60 |
margin-top: 10px; |
|
61 |
||
62 |
display: none; |
|
63 |
} |
|
64 |
div.straightaway { |
|
65 |
clear: both; |
|
66 |
} |
|
67 |
/* Footer */ |
|
68 |
div.footer { |
|
69 |
min-height: 40px; |
|
70 |
padding: 10px; |
|
71 |
background-image: url(../images/footer.gif); |
|
72 |
background-repeat: repeat-x; |
|
73 |
background-color: #6fba38; |
|
74 |
color: #FFF; |
|
75 |
} |
|
76 |
div.footer a { |
|
77 |
color: #B3FF78; |
|
78 |
} |
|
79 |
||
80 |
/* Content area */ |
|
81 |
div#maincontent { |
|
82 |
padding: 10px; |
|
83 |
padding-right: 150px; |
|
37 | 84 |
clear: left; |
0 | 85 |
} |
86 |
img#ajaxloadicon { |
|
87 |
margin-top: 10px; |
|
88 |
} |
|
89 |
div#maincontent h2 { |
|
90 |
color: #53a018; |
|
91 |
margin: 10px 0; |
|
92 |
padding: 0; |
|
93 |
font-size: 16pt; |
|
94 |
} |
|
95 |
div#maincontent p { |
|
96 |
margin-left: 1em; |
|
97 |
} |
|
98 |
div#maincontent h2#pagetitle { |
|
99 |
margin: 0; |
|
100 |
border-bottom: 1px solid #73c038; |
|
101 |
font-size: 18pt; |
|
102 |
color: #000000; |
|
103 |
} |
|
104 |
div#maincontent a:link, div#maincontent a:visited { |
|
105 |
color: #237000; |
|
106 |
text-decoration: none; |
|
107 |
} |
|
108 |
div#maincontent a:hover { |
|
109 |
color: #033000; |
|
110 |
border-bottom: 1px dotted #033000; |
|
111 |
} |
|
112 |
div#maincontent a.wikilink-nonexistent { |
|
113 |
color: #AA0000; |
|
114 |
} |
|
115 |
div#maincontent a.wikilink-nonexistent:hover { |
|
116 |
color: #BA2000; |
|
117 |
} |
|
118 |
div#maincontent ul { |
|
119 |
list-style: square; |
|
120 |
} |
|
121 |
/* Sidebar */ |
|
122 |
div#sidebar, div.dbx-box { |
|
123 |
float: right; |
|
37 | 124 |
clear: right; |
0 | 125 |
width: 135px; |
126 |
} |
|
127 |
div#sidebar h4, div.dbx-handle { |
|
128 |
margin: 0; |
|
129 |
padding: 0 5px; |
|
130 |
line-height: 25px; |
|
131 |
color: #FFF; |
|
132 |
background-color: #104715; |
|
133 |
border-bottom: 1px solid #93e058; |
|
134 |
font-weight: normal; |
|
135 |
text-align: right; |
|
136 |
text-transform: lowercase; |
|
137 |
} |
|
138 |
div.dbx-handle { |
|
139 |
text-align: left; |
|
140 |
cursor: move; |
|
141 |
} |
|
142 |
div#sidebar ul, .dbx-content ul { |
|
143 |
margin: 0; |
|
144 |
padding: 0; |
|
145 |
list-style: none !important; |
|
146 |
} |
|
147 |
div#sidebar ul li, div.dbx-content ul li { |
|
148 |
padding: 0; |
|
149 |
} |
|
150 |
div#sidebar ul li a, div.dbx-content ul li a { |
|
151 |
line-height: 25px; |
|
152 |
padding: 0 7px; |
|
153 |
text-decoration: none; |
|
154 |
color: #000; |
|
155 |
background-color: #60A745; |
|
156 |
display: block; |
|
157 |
border-bottom: 1px solid #93e058; |
|
158 |
} |
|
159 |
div#sidebar ul li a:hover, div.dbx-content ul li a:hover { |
|
160 |
background-color: #70B755; |
|
161 |
} |
|
162 |
div#sidebar div, div.dbx-content2 { |
|
163 |
background-color: #60A745; |
|
164 |
border-bottom: 1px solid #93e058; |
|
165 |
width: 135px; |
|
166 |
/* padding: 3px; */ |
|
167 |
} |
|
168 |
div#sidebar div ul { |
|
169 |
margin-left: 2em; |
|
170 |
list-style: square; |
|
171 |
} |
|
172 |
div#sidebar div ul a { |
|
173 |
background-color: transparent; |
|
174 |
display: inline; |
|
175 |
border-bottom-width: 0px; |
|
176 |
padding: 0; |
|
177 |
color: #134000; |
|
178 |
} |
|
179 |
div#sidebar div ul a:hover { |
|
180 |
background-color: transparent; |
|
181 |
display: inline; |
|
182 |
color: #033000; |
|
183 |
border-bottom: 1px dotted #033000; |
|
184 |
} |
|
185 |
div#maincontent div.dbx-box a { |
|
186 |
color: #000000; |
|
187 |
} |
|
188 |
div#sidebar div div { |
|
189 |
background: transparent; |
|
190 |
border-bottom-width: 0; |
|
191 |
padding: 0; |
|
192 |
} |
|
193 |
/* Page toolbar */ |
|
194 |
/* |
|
195 |
div.pagetools { |
|
196 |
background-color: #93e058; |
|
197 |
line-height: 20px; |
|
198 |
font-size: 75%; |
|
199 |
padding: 0 5px; |
|
200 |
} |
|
201 |
div.pagetools a { |
|
202 |
text-decoration: none; |
|
203 |
padding: 3px; |
|
204 |
color: #235000; |
|
205 |
} |
|
206 |
div.pagetools a:hover { |
|
207 |
background-color: #A3F068; |
|
208 |
height: 20px; |
|
209 |
} |
|
210 |
div.pagetools a.selected { |
|
211 |
font-weight: bold; |
|
212 |
background-color: #f4fff7; |
|
213 |
} |
|
214 |
div.pagetools#pagebarpopup { |
|
215 |
display: none; |
|
216 |
position: absolute; |
|
217 |
width: 150px; |
|
218 |
padding: 0; |
|
219 |
overflow: hidden; |
|
220 |
} |
|
221 |
div.pagetools#pagebarpopup a { |
|
222 |
display: block; |
|
223 |
} |
|
224 |
*/ |
|
225 |
||
226 |
/* |
|
227 |
* jBox menu system |
|
228 |
*/ |
|
229 |
||
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
230 |
div.menu, div.menu_nojs { |
0 | 231 |
background-color: #93e058; |
232 |
font-size: 7pt; |
|
233 |
border-width: 0; |
|
234 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
235 |
div.menu a, div.menu_nojs a, div.menu div.label, div.menu_nojs div.label { |
0 | 236 |
padding: 2.5pt 5px; |
237 |
margin-right: 3px; |
|
238 |
text-decoration: none; |
|
239 |
display: block; |
|
240 |
float: left; |
|
241 |
color: #235000; |
|
242 |
border-bottom-width: 0 !important; |
|
243 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
244 |
div.menu div.label, div.menu_nojs div.label { |
0 | 245 |
color: #002010; |
246 |
cursor: default; |
|
247 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
248 |
div.menu span.sep, div.menu_nojs span.sep { |
0 | 249 |
display: block; |
250 |
float: left; |
|
251 |
width: 5px; |
|
252 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
253 |
div.menu div.multopts, div.menu_nojs div.multopts { |
0 | 254 |
line-height: 17pt; |
255 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
256 |
div.menu div.multopts a, div.menu_nojs div.multopts a, div.menu div.multopts div.label, div.menu_nojs div.multopts div.label { |
0 | 257 |
float: none; |
258 |
display: inline; |
|
259 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
260 |
div.menu a.liteselected, div.menu_nojs a.liteselected, div.menu a.liteselected:hover, div.menu_nojs a.liteselected:hover, div.menu a:hover, div.menu_nojs a:hover { |
0 | 261 |
color: #235000; |
262 |
background-color: #A3F068; |
|
263 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
264 |
div.menu input[type ^="text"], div.menu_nojs input[type ^="text"], div.menu input[type ^="password"], div.menu_nojs input[type ^="password"] { |
0 | 265 |
border-width: 0; |
266 |
font-size: 9pt; |
|
267 |
padding: 4px 5px; |
|
268 |
max-width: 70px; |
|
269 |
background-color: #A3F068; |
|
270 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
271 |
div.menu input[type ^="text"]:hover, div.menu_nojs input[type ^="text"]:hover, div.menu input[type ^="password"]:hover, div.menu_nojs input[type ^="password"]:hover { |
0 | 272 |
background-color: #AAF870; |
273 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
274 |
div.menu input[type ^="text"]:focus, div.menu_nojs input[type ^="text"]:focus, div.menu input[type ^="password"]:focus, div.menu_nojs input[type ^="password"]:focus { |
0 | 275 |
background-color: #B3FF78; |
276 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
277 |
div.menu input[type ^="button"], div.menu_nojs input[type ^="button"], div.menu input[type ^="submit"], div.menu_nojs input[type ^="submit"] { |
0 | 278 |
border-width: 0; |
279 |
font-size: 9pt; |
|
280 |
padding: 3px 5px; |
|
281 |
max-width: 70px; |
|
282 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
283 |
div.menu a.current, div.menu_nojs a.current, div.menu a.current:hover, div.menu_nojs a.current:hover, div.menu a.selected, div.menu_nojs a.selected, div.menu a.selected:hover, div.menu_nojs a.selected:hover { |
0 | 284 |
color: #000040; |
285 |
background-color: #f4fff7; |
|
286 |
font-weight: bold; |
|
287 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
288 |
div.menu ul, div.menu_nojs ul { |
0 | 289 |
display: none; |
290 |
position: absolute; |
|
291 |
padding: 0; |
|
292 |
margin: 0; |
|
293 |
background-color: #93e058; |
|
294 |
border-width: 0; |
|
295 |
min-width: 120px; |
|
296 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
297 |
/* |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
298 |
div.menu_nojs ul { |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
299 |
display: block !important; |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
300 |
} |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
301 |
*/ |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
302 |
div.menu ul li, div.menu_nojs ul li { |
0 | 303 |
list-style: none; |
304 |
} |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
0
diff
changeset
|
305 |
div.menu ul a, div.menu_nojs ul a { |
0 | 306 |
float: none; |
307 |
margin: 0; |
|
308 |
} |
|
309 |
span.menuclear { |
|
310 |
font-size: 1px; |
|
311 |
height: 0px; |
|
312 |
width: 0px; |
|
313 |
clear: left; |
|
314 |
line-height: 0px; |
|
315 |
display: block; |
|
316 |
} |
|
317 |
||
318 |
/* Other Enano-related stuff */ |
|
319 |
||
320 |
/* Tables */ |
|
321 |
.tblholder { margin: 10px 0 0 0; padding: 0; border: 1px solid #AAAAAA; background-color: #E8E8E8; } |
|
322 |
div.tblholder td.row1 { padding: 4px; background-color: #E0E0E0; } |
|
323 |
div.tblholder td.row2 { padding: 4px; background-color: #F0F0F0; } |
|
324 |
div.tblholder td.row3 { padding: 4px; background-color: #E8E8E8; } |
|
325 |
div.tblholder th { padding: 4px; background-color: #73c038; font-weight: bold; text-align: center; color: #FFFFFF; } |
|
326 |
div.tblholder th.subhead { padding: 4px; background-color: #93e058; font-weight: bold; text-align: center; color: #FFFFFF; } |
|
327 |
div.tblholder table { background-color: #FFFFFF; width: 100%; } |
|
328 |
||
329 |
/* JWS window theming */ |
|
330 |
div.jswindow { border: 2px solid #7090B0; border-top: 5px solid #7090B0; padding: 0px; font-family: Trebuchet MS, tahoma, verdana, arial, sans-serif; font-size: 9pt; display: none; position: absolute; background-color: #FFFFFF; } |
|
331 |
div.titlebar { background-color: #7090B0; color: #FFFFFF; font-family: Trebuchet MS, tahoma, verdana, arial, sans-serif; font-size: 9pt; padding-bottom: 4px; cursor: default; } |
|
332 |
div.titlebar div.closebtn { width: 16px; height: 16px; border: 1px solid #B0D0F0; background-color: #90B0D0; display: block; } |
|
333 |
div.titlebar div.closebtn:hover { width: 16px; height: 16px; border: 1px solid #FFFFFF; background-color: #B0D0F0; display: block; } |
|
334 |
div.titlebar table, div.titlebar td { margin: 0; padding: 0; } |
|
335 |
div.jswindow div.content { padding: 10px; margin: 0; background-color: #FFFFFF; } |
|
336 |
||
337 |
/* The Wordpress-like fills behind checkboxes and their labels */ |
|
338 |
.catCheck { padding: 3px; } |
|
339 |
.catCheck:hover { padding: 3px; background-color: #F0F0F0; } |
|
340 |
||
341 |
/* Information, warning, question, error, and wait boxes */ |
|
342 |
div.error-box { background-image: url(../../../images/error.png); background-repeat: no-repeat; background-color: #FFF4F4; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 1em 0 0 1em; min-height: 25px; } |
|
343 |
div.info-box { background-image: url(../../../images/info.png); background-repeat: no-repeat; background-color: #F4F4FF; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 1em 0 0 1em; min-height: 25px; } |
|
344 |
div.warning-box { background-image: url(../../../images/warning.png); background-repeat: no-repeat; background-color: #FFFFF4; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 1em 0 0 1em; min-height: 25px; } |
|
345 |
div.question-box { background-image: url(../../../images/question.png); background-repeat: no-repeat; background-color: #F4FFF4; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 1em 0 0 1em; min-height: 25px; } |
|
346 |
div.wait-box { background-image: url(../../../images/wait.png); background-repeat: no-repeat; background-color: #FFF4FF; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 1em 0 0 1em; min-height: 25px; } |
|
347 |
||
348 |
/* Tables where diffs are shown */ |
|
349 |
table.diff, td.diff-otitle, td.diff-ntitle { background-color: white; } |
|
350 |
td.diff-addedline { background: #cfc; font-size: smaller; } |
|
351 |
td.diff-deletedline { background: #ffa; font-size: smaller; } |
|
352 |
td.diff-context { background: #eee; font-size: smaller; } |
|
353 |
span.diffchange { color: red; font-weight: bold; } |
|
354 |
||
355 |
/* Bordered boxes */ |
|
356 |
blockquote, .mdg-comment, .mdg-infobox { |
|
357 |
background: #FFF; |
|
358 |
border-bottom: 1px solid #EEE; |
|
359 |
border-top: 1px solid #EEE; |
|
360 |
color: #333; |
|
361 |
display: block; |
|
362 |
margin-bottom: 1.2em; |
|
363 |
padding: 6px 12px; |
|
364 |
} |
|
365 |
||
366 |
/* |
|
367 |
* Docking Boxes code (for the sidebar editor) |
|
368 |
*/ |
|
369 |
||
370 |
/* group container(s) */ |
|
371 |
#sbedit { |
|
372 |
margin: 0; |
|
373 |
padding: 0; |
|
374 |
/* position:relative; /* additional outer containers must also have position:relative */ |
|
375 |
} |
|
376 |
/* keyboard navigation tooltip */ |
|
377 |
.dbx-tooltip { |
|
378 |
display:block; |
|
379 |
position:absolute; |
|
380 |
margin:36px 0 0 125px; |
|
381 |
width:185px; |
|
382 |
border:1px solid #000; |
|
383 |
background:#ffd; |
|
384 |
color:#000; |
|
385 |
font:normal normal normal 0.85em tahoma, arial, sans-serif; |
|
386 |
padding:2px 4px 3px 5px; |
|
387 |
text-align:left; |
|
388 |
} |
|
389 |
* html .dbx-tooltip { width:195px; } |
|
390 |
||
391 |
/* use CSS2 system colors in CSS2 browsers |
|
392 |
but not safari, which doesn't support them */ |
|
393 |
*[class="dbx-tooltip"]:lang(en) { |
|
394 |
border-color:InfoText; |
|
395 |
background:InfoBackground; |
|
396 |
color:InfoText; |
|
397 |
font:small-caption; |
|
398 |
font-weight:normal; |
|
399 |
} |
|
400 |
/* additional clone styles */ |
|
401 |
.dbx-clone { |
|
402 |
opacity: 0.8; |
|
403 |
} |
|
404 |
.dbx-content ul { |
|
405 |
margin: 0; padding: 0; |
|
406 |
list-style: none; |
|
407 |
} |
|
408 |
.dbx-content li a, .dbx-content li a:hover { |
|
409 |
text-decoration: none; |
|
410 |
} |
|
411 |
.dbx-content2 { |
|
412 |
margin: 0px 1px 0px 1px; |
|
413 |
} |
|
414 |
||
415 |
/* inputs */ |
|
416 |
input { |
|
417 |
color: #555; |
|
418 |
font: normal 1.1em "Lucida Sans Unicode",sans-serif; |
|
419 |
} |
|
420 |
||
421 |
input, select, textarea { |
|
422 |
background-color: #539018; |
|
423 |
color: #FFF; |
|
424 |
padding: 2px; |
|
425 |
border: 1px solid #EEE; |
|
426 |
} |
|
427 |
||
428 |
input:hover { |
|
429 |
background-color: #73b038; |
|
430 |
} |
|
431 |
||
51
436e7a3a4013
Fixed even more bugs in the upgrade schema (there may be a number of commits like this, as we are testing the upgrade script on a temp server)
Dan
parents:
37
diff
changeset
|
432 |
input:active, input:focus { |
0 | 433 |
background-color: #83c048; |
434 |
} |
|
435 |