author | Dan |
Sat, 26 Sep 2009 15:26:14 -0400 | |
changeset 1124 | 1e956881d362 |
parent 663 | d0f74bcd21eb |
child 1227 | bdac73ed481e |
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 |
body { |
|
13 |
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
|
14 |
/* 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
|
15 |
color: #202020; |
0 | 16 |
background-image: url(../images/bghatching.gif); |
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
161
diff
changeset
|
17 |
} |
0 | 18 |
div#bg { |
19 |
background-image: url(../images/bgfade.png); |
|
20 |
} |
|
21 |
div#rap { |
|
22 |
background-image: url(../images/rap.png); |
|
23 |
} |
|
24 |
div#title { |
|
25 |
background-color: #6abd2b; |
|
663 | 26 |
border-bottom-color: #237000; |
0 | 27 |
background-image: url(../images/header.gif); |
28 |
} |
|
29 |
/* Footer */ |
|
30 |
div.footer { |
|
31 |
background-image: url(../images/footer.gif); |
|
32 |
background-color: #6fba38; |
|
33 |
color: #FFF; |
|
34 |
} |
|
35 |
div.footer a { |
|
36 |
color: #B3FF78; |
|
37 |
} |
|
38 |
||
39 |
/* Content area */ |
|
40 |
div#maincontent h2 { |
|
41 |
color: #53a018; |
|
42 |
} |
|
43 |
div#maincontent h2#pagetitle { |
|
44 |
border-bottom: 1px solid #73c038; |
|
45 |
color: #000000; |
|
46 |
} |
|
47 |
div#maincontent a:link, div#maincontent a:visited { |
|
48 |
color: #237000; |
|
49 |
} |
|
50 |
div#maincontent a:hover { |
|
51 |
color: #033000; |
|
52 |
border-bottom: 1px dotted #033000; |
|
53 |
} |
|
54 |
div#maincontent a.wikilink-nonexistent { |
|
55 |
color: #AA0000; |
|
56 |
} |
|
57 |
div#maincontent a.wikilink-nonexistent:hover { |
|
58 |
color: #BA2000; |
|
59 |
} |
|
60 |
/* Sidebar */ |
|
61 |
div#sidebar h4, div.dbx-handle { |
|
62 |
color: #FFF; |
|
63 |
background-color: #104715; |
|
64 |
border-bottom: 1px solid #93e058; |
|
65 |
} |
|
66 |
div#sidebar ul li a, div.dbx-content ul li a { |
|
67 |
color: #000; |
|
68 |
background-color: #60A745; |
|
69 |
border-bottom: 1px solid #93e058; |
|
70 |
} |
|
71 |
div#sidebar ul li a:hover, div.dbx-content ul li a:hover { |
|
72 |
background-color: #70B755; |
|
73 |
} |
|
74 |
div#sidebar div, div.dbx-content2 { |
|
75 |
background-color: #60A745; |
|
76 |
border-bottom: 1px solid #93e058; |
|
77 |
} |
|
78 |
div#sidebar div ul a { |
|
79 |
color: #134000; |
|
80 |
} |
|
81 |
div#sidebar div ul a:hover { |
|
82 |
color: #033000; |
|
83 |
border-bottom: 1px dotted #033000; |
|
84 |
} |
|
85 |
div#maincontent div.dbx-box a { |
|
86 |
color: #000000; |
|
87 |
} |
|
88 |
||
89 |
/* |
|
90 |
* jBox menu system |
|
91 |
*/ |
|
92 |
||
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
|
93 |
div.menu, div.menu_nojs { |
0 | 94 |
background-color: #93e058; |
95 |
} |
|
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
|
96 |
div.menu a, div.menu_nojs a, div.menu div.label, div.menu_nojs div.label { |
0 | 97 |
color: #235000; |
98 |
} |
|
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
|
99 |
div.menu div.label, div.menu_nojs div.label { |
0 | 100 |
color: #002010; |
101 |
} |
|
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
|
102 |
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 | 103 |
color: #235000; |
104 |
background-color: #A3F068; |
|
105 |
} |
|
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
|
106 |
div.menu input[type ^="text"], div.menu_nojs input[type ^="text"], div.menu input[type ^="password"], div.menu_nojs input[type ^="password"] { |
0 | 107 |
background-color: #A3F068; |
108 |
} |
|
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
|
109 |
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 | 110 |
background-color: #AAF870; |
111 |
} |
|
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
|
112 |
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 | 113 |
background-color: #B3FF78; |
114 |
} |
|
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
|
115 |
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 | 116 |
color: #000040; |
117 |
background-color: #f4fff7; |
|
118 |
} |
|
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
|
119 |
div.menu ul, div.menu_nojs ul { |
0 | 120 |
background-color: #93e058; |
121 |
} |
|
122 |
||
123 |
/* Other Enano-related stuff */ |
|
124 |
||
125 |
/* Tables */ |
|
126 |
.tblholder { margin: 10px 0 0 0; padding: 0; border: 1px solid #AAAAAA; background-color: #E8E8E8; } |
|
127 |
div.tblholder td.row1 { padding: 4px; background-color: #E0E0E0; } |
|
128 |
div.tblholder td.row2 { padding: 4px; background-color: #F0F0F0; } |
|
129 |
div.tblholder td.row3 { padding: 4px; background-color: #E8E8E8; } |
|
130 |
div.tblholder th { padding: 4px; background-color: #73c038; font-weight: bold; text-align: center; color: #FFFFFF; } |
|
131 |
div.tblholder th.subhead { padding: 4px; background-color: #93e058; font-weight: bold; text-align: center; color: #FFFFFF; } |
|
132 |
div.tblholder table { background-color: #FFFFFF; width: 100%; } |
|
133 |
||
134 |
/* JWS window theming */ |
|
135 |
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; } |
|
136 |
div.titlebar { background-color: #7090B0; color: #FFFFFF; font-family: Trebuchet MS, tahoma, verdana, arial, sans-serif; font-size: 9pt; padding-bottom: 4px; cursor: default; } |
|
137 |
div.titlebar div.closebtn { width: 16px; height: 16px; border: 1px solid #B0D0F0; background-color: #90B0D0; display: block; } |
|
138 |
div.titlebar div.closebtn:hover { width: 16px; height: 16px; border: 1px solid #FFFFFF; background-color: #B0D0F0; display: block; } |
|
139 |
div.titlebar table, div.titlebar td { margin: 0; padding: 0; } |
|
140 |
div.jswindow div.content { padding: 10px; margin: 0; background-color: #FFFFFF; } |
|
141 |
||
142 |
/* The Wordpress-like fills behind checkboxes and their labels */ |
|
143 |
.catCheck { padding: 3px; } |
|
144 |
.catCheck:hover { padding: 3px; background-color: #F0F0F0; } |
|
145 |
||
146 |
/* Information, warning, question, error, and wait boxes */ |
|
147 |
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; } |
|
148 |
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; } |
|
149 |
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; } |
|
150 |
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; } |
|
151 |
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; } |
|
152 |
||
153 |
/* Tables where diffs are shown */ |
|
154 |
table.diff, td.diff-otitle, td.diff-ntitle { background-color: white; } |
|
155 |
td.diff-addedline { background: #cfc; font-size: smaller; } |
|
156 |
td.diff-deletedline { background: #ffa; font-size: smaller; } |
|
157 |
td.diff-context { background: #eee; font-size: smaller; } |
|
158 |
span.diffchange { color: red; font-weight: bold; } |
|
159 |
||
160 |
/* Bordered boxes */ |
|
161 |
blockquote, .mdg-comment, .mdg-infobox { |
|
162 |
background: #FFF; |
|
163 |
border-bottom: 1px solid #EEE; |
|
164 |
border-top: 1px solid #EEE; |
|
165 |
color: #333; |
|
166 |
display: block; |
|
167 |
margin-bottom: 1.2em; |
|
168 |
padding: 6px 12px; |
|
169 |
} |
|
170 |
||
171 |
/* |
|
172 |
* Docking Boxes code (for the sidebar editor) |
|
173 |
*/ |
|
174 |
||
175 |
/* group container(s) */ |
|
176 |
#sbedit { |
|
177 |
margin: 0; |
|
178 |
padding: 0; |
|
179 |
/* position:relative; /* additional outer containers must also have position:relative */ |
|
180 |
} |
|
181 |
/* keyboard navigation tooltip */ |
|
182 |
.dbx-tooltip { |
|
183 |
display:block; |
|
184 |
position:absolute; |
|
185 |
margin:36px 0 0 125px; |
|
186 |
width:185px; |
|
187 |
border:1px solid #000; |
|
188 |
background:#ffd; |
|
189 |
color:#000; |
|
190 |
font:normal normal normal 0.85em tahoma, arial, sans-serif; |
|
191 |
padding:2px 4px 3px 5px; |
|
192 |
text-align:left; |
|
193 |
} |
|
194 |
* html .dbx-tooltip { width:195px; } |
|
195 |
||
196 |
/* use CSS2 system colors in CSS2 browsers |
|
197 |
but not safari, which doesn't support them */ |
|
198 |
*[class="dbx-tooltip"]:lang(en) { |
|
199 |
border-color:InfoText; |
|
200 |
background:InfoBackground; |
|
201 |
color:InfoText; |
|
202 |
font:small-caption; |
|
203 |
font-weight:normal; |
|
204 |
} |
|
205 |
/* additional clone styles */ |
|
206 |
.dbx-clone { |
|
207 |
opacity: 0.8; |
|
208 |
} |
|
209 |
.dbx-content ul { |
|
210 |
margin: 0; padding: 0; |
|
211 |
list-style: none; |
|
212 |
} |
|
213 |
.dbx-content li a, .dbx-content li a:hover { |
|
214 |
text-decoration: none; |
|
215 |
} |
|
216 |
.dbx-content2 { |
|
217 |
margin: 0px 1px 0px 1px; |
|
218 |
} |
|
219 |
||
220 |
/* inputs */ |
|
221 |
input { |
|
222 |
color: #555; |
|
223 |
font: normal 1.1em "Lucida Sans Unicode",sans-serif; |
|
224 |
} |
|
225 |
||
226 |
input, select, textarea { |
|
227 |
background-color: #539018; |
|
228 |
color: #FFF; |
|
229 |
padding: 2px; |
|
230 |
border: 1px solid #EEE; |
|
231 |
} |
|
232 |
||
233 |
input:hover { |
|
234 |
background-color: #73b038; |
|
235 |
} |
|
236 |
||
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
|
237 |
input:active, input:focus { |
0 | 238 |
background-color: #83c048; |
239 |
} |
|
240 |