author | Dan Fuhry <dan@enanocms.org> |
Mon, 05 Dec 2011 08:16:00 -0500 | |
changeset 1356 | e80b5733ce9d |
parent 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 { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
13 |
background-color: #101d14; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
14 |
/* color added in 1.0.2 to fix light text in dark desktop themes */ |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
15 |
color: #202020; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
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 { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
19 |
background-image: url(../images/bgfade.png); |
0 | 20 |
} |
21 |
div#rap { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
22 |
background-image: url(../images/rap.png); |
0 | 23 |
} |
24 |
div#title { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
25 |
background-color: #6abd2b; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
26 |
border-bottom-color: #237000; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
27 |
background-image: url(../images/header.gif); |
0 | 28 |
} |
29 |
/* Footer */ |
|
30 |
div.footer { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
31 |
background-image: url(../images/footer.gif); |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
32 |
background-color: #6fba38; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
33 |
color: #FFF; |
0 | 34 |
} |
35 |
div.footer a { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
36 |
color: #B3FF78; |
0 | 37 |
} |
38 |
||
39 |
/* Content area */ |
|
40 |
div#maincontent h2 { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
41 |
color: #53a018; |
0 | 42 |
} |
43 |
div#maincontent h2#pagetitle { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
44 |
border-bottom: 1px solid #73c038; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
45 |
color: #000000; |
0 | 46 |
} |
47 |
div#maincontent a:link, div#maincontent a:visited { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
48 |
color: #237000; |
0 | 49 |
} |
50 |
div#maincontent a:hover { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
51 |
color: #033000; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
52 |
border-bottom: 1px dotted #033000; |
0 | 53 |
} |
54 |
div#maincontent a.wikilink-nonexistent { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
55 |
color: #AA0000; |
0 | 56 |
} |
57 |
div#maincontent a.wikilink-nonexistent:hover { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
58 |
color: #BA2000; |
0 | 59 |
} |
60 |
/* Sidebar */ |
|
61 |
div#sidebar h4, div.dbx-handle { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
62 |
color: #FFF; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
63 |
background-color: #104715; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
64 |
border-bottom: 1px solid #93e058; |
0 | 65 |
} |
66 |
div#sidebar ul li a, div.dbx-content ul li a { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
67 |
color: #000; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
68 |
background-color: #60A745; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
69 |
border-bottom: 1px solid #93e058; |
0 | 70 |
} |
71 |
div#sidebar ul li a:hover, div.dbx-content ul li a:hover { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
72 |
background-color: #70B755; |
0 | 73 |
} |
74 |
div#sidebar div, div.dbx-content2 { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
75 |
background-color: #60A745; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
76 |
border-bottom: 1px solid #93e058; |
0 | 77 |
} |
78 |
div#sidebar div ul a { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
79 |
color: #134000; |
0 | 80 |
} |
81 |
div#sidebar div ul a:hover { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
82 |
color: #033000; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
83 |
border-bottom: 1px dotted #033000; |
0 | 84 |
} |
85 |
div#maincontent div.dbx-box a { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
86 |
color: #000000; |
0 | 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 { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
94 |
background-color: #93e058; |
0 | 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 { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
97 |
color: #235000; |
0 | 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 { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
100 |
color: #002010; |
0 | 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 { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
103 |
color: #235000; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
104 |
background-color: #A3F068; |
0 | 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"] { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
107 |
background-color: #A3F068; |
0 | 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 { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
110 |
background-color: #AAF870; |
0 | 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 { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
113 |
background-color: #B3FF78; |
0 | 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 { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
116 |
color: #000040; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
117 |
background-color: #f4fff7; |
0 | 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 { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
120 |
background-color: #93e058; |
0 | 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 { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
177 |
margin: 0; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
178 |
padding: 0; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
179 |
/* position:relative; /* additional outer containers must also have position:relative */ |
0 | 180 |
} |
181 |
/* keyboard navigation tooltip */ |
|
182 |
.dbx-tooltip { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
183 |
display:block; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
184 |
position:absolute; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
185 |
margin:36px 0 0 125px; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
186 |
width:185px; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
187 |
border:1px solid #000; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
188 |
background:#ffd; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
189 |
color:#000; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
190 |
font:normal normal normal 0.85em tahoma, arial, sans-serif; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
191 |
padding:2px 4px 3px 5px; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
192 |
text-align:left; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
193 |
} |
0 | 194 |
* html .dbx-tooltip { width:195px; } |
195 |
||
196 |
/* use CSS2 system colors in CSS2 browsers |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
197 |
but not safari, which doesn't support them */ |
0 | 198 |
*[class="dbx-tooltip"]:lang(en) { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
199 |
border-color:InfoText; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
200 |
background:InfoBackground; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
201 |
color:InfoText; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
202 |
font:small-caption; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
203 |
font-weight:normal; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
204 |
} |
0 | 205 |
/* additional clone styles */ |
206 |
.dbx-clone { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
207 |
opacity: 0.8; |
0 | 208 |
} |
209 |
.dbx-content ul { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
210 |
margin: 0; padding: 0; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
211 |
list-style: none; |
0 | 212 |
} |
213 |
.dbx-content li a, .dbx-content li a:hover { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
214 |
text-decoration: none; |
0 | 215 |
} |
216 |
.dbx-content2 { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
217 |
margin: 0px 1px 0px 1px; |
0 | 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 { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
227 |
background-color: #539018; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
228 |
color: #FFF; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
229 |
padding: 2px; |
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
230 |
border: 1px solid #EEE; |
0 | 231 |
} |
232 |
||
233 |
input:hover { |
|
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
234 |
background-color: #73b038; |
0 | 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 { |
1227
bdac73ed481e
Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents:
663
diff
changeset
|
238 |
background-color: #83c048; |
0 | 239 |
} |
240 |