author | Dan |
Wed, 11 Jul 2007 13:08:34 -0400 | |
changeset 63 | 2c57d3018a88 |
parent 32 | 4d87aad3c4c0 |
child 79 | 5faff33a6580 |
permissions | -rw-r--r-- |
0 | 1 |
/* |
2 |
* Enano theme specifically designed to make the admin panel work better |
|
3 |
*/ |
|
4 |
||
5 |
||
6 |
body { color: #000000; background-color: #456798; font-family: arial, helvetica, sans-serif; font-size: 8pt; margin: 0; padding: 0; } |
|
7 |
||
8 |
div#header { font-family: georgia, serif; font-size: 11pt; background-color: #254778; padding: 10px; color: #FFFFFF; line-height: 55px; } |
|
9 |
div#header a { color: #C0D0F0; border-bottom: 1px dotted #a0c0f0; text-decoration: none; } |
|
10 |
div#header div.sitename { color: #B0C8F0; font-family: georgia, serif; font-weight: normal; font-size: 22pt; margin: 0 10px 0 0; padding: 0; float: left; } |
|
11 |
div#header div.menulink { float: right; padding: 0 10px 0 0; } |
|
12 |
div#header div.menulink a { text-decoration: underline; color: #FFFFFF; border-bottom-width: 0; } |
|
13 |
||
14 |
div#sidebar { position: absolute; background-color: #000010; color: #FFFFFF; padding: 0px; width: 200px; display: none; } |
|
15 |
div#sidebar h4 { background-color: #444444; margin: 0; padding: 5px; } |
|
16 |
div#sidebar ul { margin: 0; padding: 0; list-style: none; } |
|
17 |
div#sidebar ul li a { display: block; padding: 5px 8px; text-decoration: none; color: #FFFFFF; } |
|
18 |
div#sidebar ul li a:hover { background-color: #303030; } |
|
19 |
||
20 |
div.footer { margin: 10px 0 0 0; padding: 7px; text-align: center; border: 1px solid #A0A0A0; background-color: #e0e0e0; color: #666; } |
|
21 |
div.footer a { color: #777; text-decoration: underline; } |
|
22 |
||
23 |
table#wrapper { width: 100%; margin: 10px 0 0 0; } |
|
24 |
table#wrapper td.top-left { width: 37px; height: 28px; background-image: url(../images/window-topcorners.png); background-repeat: no-repeat; } |
|
25 |
table#wrapper td.top { height: 28px; background-image: url(../images/window-top.png); background-repeat: repeat-x; } |
|
26 |
table#wrapper td.top-right { width: 37px; height: 28px; background-image: url(../images/window-topcorners.png); background-repeat: no-repeat; background-position: -37px 0px; } |
|
27 |
table#wrapper td.left { width: 37px; background-image: url(../images/window-left.png); background-repeat: repeat-y; } |
|
28 |
table#wrapper td.main { background-color: #FFFFFF; } |
|
29 |
table#wrapper td.right { width: 37px; background-image: url(../images/window-right.png); background-repeat: repeat-y; } |
|
30 |
table#wrapper td.bottom-left { width: 37px; height: 44px; background-image: url(../images/window-bottomcorners.png); background-repeat: no-repeat; } |
|
31 |
table#wrapper td.bottom { height: 44px; background-image: url(../images/window-bottom.png); background-repeat: repeat-x; } |
|
32 |
table#wrapper td.bottom-right { width: 37px; height: 44px; background-image: url(../images/window-bottomcorners.png); background-repeat: no-repeat; background-position: -37px 0px; } |
|
33 |
||
34 |
/* Content area */ |
|
35 |
table#wrapper td.main h2.pagename { |
|
36 |
border-bottom: 1px solid #456798; |
|
37 |
margin-bottom: 0; |
|
38 |
} |
|
39 |
||
40 |
table#wrapper td.main a { |
|
41 |
color: #294F75; |
|
42 |
} |
|
43 |
table#wrapper td.main a:hover { |
|
44 |
color: #597FA5; |
|
45 |
} |
|
46 |
||
47 |
/* |
|
48 |
* jBox menu system |
|
49 |
*/ |
|
50 |
||
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:
22
diff
changeset
|
51 |
div.menu, div.menu_nojs { |
0 | 52 |
background-color: #B0D0F0; |
53 |
font-size: 7pt; |
|
54 |
border-width: 0; |
|
55 |
} |
|
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:
22
diff
changeset
|
56 |
div.menu a, div.menu_nojs a, div.menu div.label, div.menu_nojs div.label { |
0 | 57 |
padding: 2.5pt 5px; |
58 |
margin-right: 3px; |
|
59 |
text-decoration: none; |
|
60 |
display: block; |
|
61 |
float: left; |
|
62 |
color: #406080; |
|
63 |
} |
|
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:
22
diff
changeset
|
64 |
div.menu div.label, div.menu_nojs div.label { |
0 | 65 |
color: #001020; |
66 |
cursor: default; |
|
67 |
} |
|
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:
22
diff
changeset
|
68 |
div.menu span.sep, div.menu_nojs span.sep { |
0 | 69 |
display: block; |
70 |
float: left; |
|
71 |
width: 5px; |
|
72 |
} |
|
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:
22
diff
changeset
|
73 |
div.menu div.multopts, div.menu_nojs div.multopts { |
0 | 74 |
line-height: 17pt; |
75 |
} |
|
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:
22
diff
changeset
|
76 |
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 | 77 |
float: none; |
78 |
display: inline; |
|
79 |
} |
|
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:
22
diff
changeset
|
80 |
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 | 81 |
color: #406080; |
82 |
background-color: #D0F0FF; |
|
83 |
} |
|
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:
22
diff
changeset
|
84 |
div.menu input[type ^="text"], div.menu_nojs input[type ^="text"], div.menu input[type ^="password"], div.menu_nojs input[type ^="password"] { |
0 | 85 |
border-width: 0; |
86 |
font-size: 9pt; |
|
87 |
padding: 4px 5px; |
|
88 |
max-width: 70px; |
|
89 |
background-color: #D0F0FF; |
|
90 |
} |
|
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:
22
diff
changeset
|
91 |
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 | 92 |
background-color: #E0F0FF; |
93 |
} |
|
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:
22
diff
changeset
|
94 |
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 | 95 |
background-color: #F0F0FF; |
96 |
} |
|
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:
22
diff
changeset
|
97 |
div.menu input[type ^="button"], div.menu_nojs input[type ^="button"], div.menu input[type ^="submit"], div.menu_nojs input[type ^="submit"] { |
0 | 98 |
border-width: 0; |
99 |
font-size: 9pt; |
|
100 |
padding: 3px 5px; |
|
101 |
max-width: 70px; |
|
102 |
} |
|
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:
22
diff
changeset
|
103 |
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 | 104 |
color: #000040; |
105 |
background-color: #FFFFFF; |
|
106 |
} |
|
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:
22
diff
changeset
|
107 |
div.menu ul, div.menu_nojs ul { |
0 | 108 |
display: none; |
109 |
position: absolute; |
|
110 |
padding: 0; |
|
111 |
margin: 0; |
|
112 |
background-color: #B0D0F0; |
|
113 |
border-width: 0; |
|
114 |
min-width: 120px; |
|
115 |
} |
|
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:
22
diff
changeset
|
116 |
div.menu ul li, div.menu_nojs ul li { |
0 | 117 |
list-style: none; |
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:
22
diff
changeset
|
119 |
div.menu ul a, div.menu_nojs ul a { |
0 | 120 |
float: none; |
121 |
margin: 0; |
|
122 |
} |
|
123 |
span.menuclear { |
|
124 |
font-size: 1px; |
|
125 |
height: 0px; |
|
126 |
width: 0px; |
|
127 |
clear: left; |
|
128 |
line-height: 0px; |
|
129 |
display: block; |
|
130 |
} |
|
131 |
||
132 |
/* Buttons - this is CSS3 */ |
|
9
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
parents:
0
diff
changeset
|
133 |
input[type ^="button"], input[type ^="submit"], button { |
0 | 134 |
border-width: 1px; |
135 |
border-color: #666; |
|
136 |
border-style: solid; |
|
137 |
background-color: #DDD; |
|
138 |
color: #101010; |
|
139 |
cursor: pointer; |
|
140 |
font-size: 8pt; |
|
141 |
font-family: arial, helvetica, sans-serif; |
|
142 |
padding: 5px 3px; |
|
143 |
background-image: url(../images/buttonbg.gif); |
|
144 |
background-repeat: repeat-x; |
|
145 |
} |
|
146 |
||
9
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
parents:
0
diff
changeset
|
147 |
input[type ^="button"]:hover, input[type ^="submit"]:hover, button:hover { |
0 | 148 |
border-color: #999; |
149 |
} |
|
150 |
||
9
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
parents:
0
diff
changeset
|
151 |
input[type ^="button"]:active, input[type ^="submit"]:active, button:active { |
0 | 152 |
padding: 6px 2px 4px 4px; |
153 |
border-color: #333; |
|
154 |
} |
|
155 |
||
156 |
input[type ^="text"], input[type ^="password"] { |
|
157 |
background-color: #F8FBFF; |
|
158 |
border: 1px solid #254778; |
|
159 |
font-size: 8pt; |
|
160 |
font-family: arial, helvetica, sans-serif; |
|
161 |
padding: 3px; |
|
162 |
} |
|
163 |
||
22
d0314575e2f0
More preliminary l10n work; userpage portal style basics implemented
Dan
parents:
9
diff
changeset
|
164 |
input:disabled { |
d0314575e2f0
More preliminary l10n work; userpage portal style basics implemented
Dan
parents:
9
diff
changeset
|
165 |
border-color: #666666 !important; |
d0314575e2f0
More preliminary l10n work; userpage portal style basics implemented
Dan
parents:
9
diff
changeset
|
166 |
background-image: none !important; |
d0314575e2f0
More preliminary l10n work; userpage portal style basics implemented
Dan
parents:
9
diff
changeset
|
167 |
background-color: #DDD !important; |
d0314575e2f0
More preliminary l10n work; userpage portal style basics implemented
Dan
parents:
9
diff
changeset
|
168 |
color: #888; |
d0314575e2f0
More preliminary l10n work; userpage portal style basics implemented
Dan
parents:
9
diff
changeset
|
169 |
} |
d0314575e2f0
More preliminary l10n work; userpage portal style basics implemented
Dan
parents:
9
diff
changeset
|
170 |