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
79
+ − 14
div#sidebar { padding: 0px; }
+ − 15
div#sidebar h4 { margin: 0; padding: 5px; }
0
+ − 16
div#sidebar ul { margin: 0; padding: 0; list-style: none; }
79
+ − 17
div#sidebar ul li a { display: block; padding: 5px 8px; text-decoration: none; }
+ − 18
div#sidebar ul li a:hover { background-color: #E0E0E0; }
0
+ − 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
79
+ − 23
table#sidebarholder { width: 100%; margin: 10px 0 0 0; }
+ − 24
+ − 25
table.wrapper { Width: 100%; }
+ − 26
table.wrapper td.top-left { width: 37px; height: 28px; background-image: url(../images/window-topcorners.png); background-repeat: no-repeat; }
+ − 27
table.wrapper td.top { height: 28px; background-image: url(../images/window-top.png); background-repeat: repeat-x; }
+ − 28
table.wrapper td.top-right { width: 37px; height: 28px; background-image: url(../images/window-topcorners.png); background-repeat: no-repeat; background-position: -37px 0px; }
+ − 29
table.wrapper td.left { width: 37px; background-image: url(../images/window-left.png); background-repeat: repeat-y; }
+ − 30
table.wrapper td.main { background-color: #FFFFFF; }
+ − 31
table.wrapper td.right { width: 37px; background-image: url(../images/window-right.png); background-repeat: repeat-y; }
+ − 32
table.wrapper td.bottom-left { width: 37px; height: 44px; background-image: url(../images/window-bottomcorners.png); background-repeat: no-repeat; }
+ − 33
table.wrapper td.bottom { height: 44px; background-image: url(../images/window-bottom.png); background-repeat: repeat-x; }
+ − 34
table.wrapper td.bottom-right { width: 37px; height: 44px; background-image: url(../images/window-bottomcorners.png); background-repeat: no-repeat; background-position: -37px 0px; }
+ − 35
+ − 36
/* Sidebar */
+ − 37
td#td-sidebar { padding-right: 12px; height: 100%; }
+ − 38
table#sidebar-show {
+ − 39
display: none;
+ − 40
width: 100%;
+ − 41
}
+ − 42
div#sidebar-hide {
+ − 43
width: 10px;
+ − 44
height: 100%;
+ − 45
background-color: #6587B8;
+ − 46
cursor: pointer;
+ − 47
position: absolute;
+ − 48
top: 0px;
+ − 49
background-repeat: no-repeat;
+ − 50
background-position: center center;
+ − 51
}
+ − 52
div#sidebar-hide:hover {
+ − 53
background-color: #95B7E8;
+ − 54
}
+ − 55
div.expanded {
+ − 56
background-image: url(../images/collapse.gif);
+ − 57
right: 232px;
+ − 58
}
+ − 59
div.collapsed {
+ − 60
background-image: url(../images/expand.gif);
+ − 61
right: 0px;
+ − 62
}
0
+ − 63
+ − 64
/* Content area */
79
+ − 65
table.wrapper td.main h2.pagename {
0
+ − 66
border-bottom: 1px solid #456798;
+ − 67
margin-bottom: 0;
+ − 68
}
+ − 69
79
+ − 70
table.wrapper td.main a {
0
+ − 71
color: #294F75;
+ − 72
}
79
+ − 73
table.wrapper td.main a:hover {
0
+ − 74
color: #597FA5;
+ − 75
}
+ − 76
+ − 77
/*
+ − 78
* jBox menu system
+ − 79
*/
+ − 80
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 81
div.menu, div.menu_nojs {
0
+ − 82
background-color: #B0D0F0;
+ − 83
font-size: 7pt;
+ − 84
border-width: 0;
+ − 85
}
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 86
div.menu a, div.menu_nojs a, div.menu div.label, div.menu_nojs div.label {
0
+ − 87
padding: 2.5pt 5px;
+ − 88
margin-right: 3px;
+ − 89
text-decoration: none;
+ − 90
display: block;
+ − 91
float: left;
+ − 92
color: #406080;
+ − 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
diff
changeset
+ − 94
div.menu div.label, div.menu_nojs div.label {
0
+ − 95
color: #001020;
+ − 96
cursor: default;
+ − 97
}
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 98
div.menu span.sep, div.menu_nojs span.sep {
0
+ − 99
display: block;
+ − 100
float: left;
+ − 101
width: 5px;
+ − 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
diff
changeset
+ − 103
div.menu div.multopts, div.menu_nojs div.multopts {
0
+ − 104
line-height: 17pt;
+ − 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
diff
changeset
+ − 106
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
+ − 107
float: none;
+ − 108
display: inline;
+ − 109
}
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 110
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
+ − 111
color: #406080;
+ − 112
background-color: #D0F0FF;
+ − 113
}
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 114
div.menu input[type ^="text"], div.menu_nojs input[type ^="text"], div.menu input[type ^="password"], div.menu_nojs input[type ^="password"] {
0
+ − 115
border-width: 0;
+ − 116
font-size: 9pt;
+ − 117
padding: 4px 5px;
+ − 118
max-width: 70px;
+ − 119
background-color: #D0F0FF;
+ − 120
}
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 121
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
+ − 122
background-color: #E0F0FF;
+ − 123
}
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 124
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
+ − 125
background-color: #F0F0FF;
+ − 126
}
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 127
div.menu input[type ^="button"], div.menu_nojs input[type ^="button"], div.menu input[type ^="submit"], div.menu_nojs input[type ^="submit"] {
0
+ − 128
border-width: 0;
+ − 129
font-size: 9pt;
+ − 130
padding: 3px 5px;
+ − 131
max-width: 70px;
+ − 132
}
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 133
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
+ − 134
color: #000040;
+ − 135
background-color: #FFFFFF;
+ − 136
}
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 137
div.menu ul, div.menu_nojs ul {
0
+ − 138
display: none;
+ − 139
position: absolute;
+ − 140
padding: 0;
+ − 141
margin: 0;
+ − 142
background-color: #B0D0F0;
+ − 143
border-width: 0;
+ − 144
min-width: 120px;
+ − 145
}
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 146
div.menu ul li, div.menu_nojs ul li {
0
+ − 147
list-style: none;
+ − 148
}
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 149
div.menu ul a, div.menu_nojs ul a {
0
+ − 150
float: none;
+ − 151
margin: 0;
+ − 152
}
+ − 153
span.menuclear {
+ − 154
font-size: 1px;
+ − 155
height: 0px;
+ − 156
width: 0px;
+ − 157
clear: left;
+ − 158
line-height: 0px;
+ − 159
display: block;
+ − 160
}
+ − 161
+ − 162
/* 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
diff
changeset
+ − 163
input[type ^="button"], input[type ^="submit"], button {
0
+ − 164
border-width: 1px;
+ − 165
border-color: #666;
+ − 166
border-style: solid;
+ − 167
background-color: #DDD;
+ − 168
color: #101010;
+ − 169
cursor: pointer;
+ − 170
font-size: 8pt;
+ − 171
font-family: arial, helvetica, sans-serif;
+ − 172
padding: 5px 3px;
+ − 173
background-image: url(../images/buttonbg.gif);
+ − 174
background-repeat: repeat-x;
+ − 175
}
+ − 176
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
diff
changeset
+ − 177
input[type ^="button"]:hover, input[type ^="submit"]:hover, button:hover {
0
+ − 178
border-color: #999;
+ − 179
}
+ − 180
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
diff
changeset
+ − 181
input[type ^="button"]:active, input[type ^="submit"]:active, button:active {
0
+ − 182
padding: 6px 2px 4px 4px;
+ − 183
border-color: #333;
+ − 184
}
+ − 185
+ − 186
input[type ^="text"], input[type ^="password"] {
+ − 187
background-color: #F8FBFF;
+ − 188
border: 1px solid #254778;
+ − 189
font-size: 8pt;
+ − 190
font-family: arial, helvetica, sans-serif;
+ − 191
padding: 3px;
+ − 192
}
+ − 193
22
+ − 194
input:disabled {
+ − 195
border-color: #666666 !important;
+ − 196
background-image: none !important;
+ − 197
background-color: #DDD !important;
+ − 198
color: #888;
+ − 199
}
+ − 200