0
+ − 1
/**
+ − 2
* The original Oxygen theme for Enano
+ − 3
* Designed by Dan Fuhry, (C) 2006
+ − 4
* This theme is Free Software; see the file "GPL" included with this package for details.
+ − 5
*/
+ − 6
+ − 7
/* The basics */
+ − 8
html,body { height: 100%; }
161
bed9d04fa144
Fixed text colors on pages when dark system themes are used (bug could be seen using MurrinaNightOrange on an Ubuntu system)
Dan
diff
changeset
+ − 9
body { /* color added in 1.0.2 to fix light text in dark desktop themes */ color: #202020; margin: 0; padding: 0; background: url(../images/bleu/bg.png); font-family: trebuchet ms, verdana, arial, helvetica, sans-serif; font-size: 9pt; }
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
diff
changeset
+ − 10
body#tinymce { background-color: white; background-image: none; }
0
+ − 11
.holder { border: 1px solid #CCCCCC; padding: 1px; background-color: #FFFFFF; color: #444444 }
+ − 12
div.pad { padding: 10px; }
+ − 13
table#title { margin: 0; padding: 0; height: 100px; background-color: #90B0D0; text-align: center; }
276
acfdccf7a2bf
Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
diff
changeset
+ − 14
table.simple-layout td#mainhead { margin: 0; padding: 0; background-color: #90B0D0; text-align: center; }
acfdccf7a2bf
Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
diff
changeset
+ − 15
table.simple-layout td#mainhead h1 { margin: 15px 0; padding: 0; font-size: 14pt; }
0
+ − 16
+ − 17
/* Sidebar */
+ − 18
td.mdgSidebarHolder { width: 140px; }
+ − 19
div.sidebar, .dbx-group { width: 138px; background-color: #F8F8F8; border-left: 1px solid #CCC; border-right: 1px solid #CCC; padding: 1px 0px 0px 0px; }
+ − 20
div.sidebar .head, .dbx-handle { background-color: #F0F0F0; display: block; margin: 0px 1px 1px 1px; font-family: Trebuchet MS, Arial, helvetica, sans-serif; font-size: 7pt; cursor: pointer; text-decoration: none; color: #111; padding: 5px; font-weight: bold; }
+ − 21
div.sidebar .head:hover, .dbx-handle:hover { background-color: #F4F4F4; display: block; margin: 0px 1px 1px 1px; font-family: Trebuchet MS, Arial, helvetica, sans-serif; font-size: 7pt; cursor: pointer; text-decoration: none; color: #111; padding: 5px; font-weight: bold; }
+ − 22
div.sidebar div.slideblock a, .dbx-content li { background-color: #DDD; display: block; margin: 0px 1px; border-bottom: 1px solid #FFF; font-family: Trebuchet MS, Arial, helvetica, sans-serif; font-size: 7pt; cursor: pointer; text-decoration: none; color: #666; padding: 5px 5px 5px 9px; list-style-type: none; }
+ − 23
div.sidebar div.slideblock a:hover, .dbx-content li:hover { background-color: #EEE; display: block; margin: 0px 1px; border-bottom: 1px solid #FFF; font-family: Trebuchet MS, Arial, helvetica, sans-serif; font-size: 7pt; cursor: pointer; text-decoration: none; color: #666; padding: 5px 5px 5px 9px; }
+ − 24
div.recttop { width: 140px; height: 12px; margin: 0; padding: 0; }
+ − 25
td.recttoptop { width: 100%; height: 12px; background-image: url(../images/bleu/border-menu-t.gif); background-repeat: repeat-x; margin: 0; padding: 0; }
+ − 26
td.recttoptop:hover { width: 100%; height: 12px; background-image: url(../images/bleu/border-menu-t-h.gif); background-repeat: repeat-x; margin: 0; padding: 0; cursor: pointer; }
+ − 27
div.rectbot { width: 140px; height: 12px; margin: 0; padding: 0; }
+ − 28
td.rectbottop { width: 100%; height: 12px; background-image: url(../images/bleu/border-btm.gif); background-repeat: repeat-x; margin: 0; padding: 0; }
+ − 29
div.slideblock, .dbx-content { overflow: hidden; background-color: #DDD; }
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
diff
changeset
+ − 30
div.slideblock2 { overflow: hidden; background-color: #DDD; margin: 0px 1px 0px 1px; border-bottom: 1px solid #FFF; }
0
+ − 31
.dbx-handle { cursor: move !important; }
+ − 32
+ − 33
/* The credits thingy at the bottom */
91
+ − 34
div#credits { margin: 0; padding: 10px; padding-bottom: 0px; padding-top: 12px; background-color: #E8E8E8; color: #AAA; font-size: 7pt; font-family: lucida grande, verdana, arial, sans-serif; }
0
+ − 35
div#credits a { color: #90B0D0; text-decoration: none; }
+ − 36
div#credits a:hover { color: #80A0C0; text-decoration: underline; }
+ − 37
+ − 38
/* The link hidden in plain "site" at the top of the page */
+ − 39
td#mainhead a { text-decoration: none; color: #000000; }
+ − 40
td#mainhead a:hover { text-decoration: none; color: #000000; border-bottom: 1px dotted #406080; }
+ − 41
+ − 42
/* Text, headings, and links inside the main div (usually #ajaxEditContainer but used some other places as well) */
+ − 43
div.contentDiv h2 { border-bottom: 1px solid #90B0D0; margin-bottom: 0; }
+ − 44
div.contentDiv h3 { font-size: 11pt; font-weight: bold; }
139
+ − 45
div.contentDiv ul li , div#messageBox ul li { list-style: url(../images/bleu/bullet.gif); }
0
+ − 46
div.contentDiv p , div#messageBox p { margin-left: 1.0em; }
276
acfdccf7a2bf
Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
diff
changeset
+ − 47
table.simple-layout div.contentDiv p { margin-left: 0em; }
0
+ − 48
div.contentDiv blockquote , div#messageBox blockquote { background-color: #F4F4F4; border: 1px dotted #406080; margin: 1em; padding: 10px; max-height: 250px; overflow: auto; }
+ − 49
div.contentDiv , div#messageBox { font-size: 9pt; }
+ − 50
div.contentDiv a , div#messageBox a { color: #7090B0; }
+ − 51
div.contentDiv a:hover , div#messageBox a:hover { color: #90B0D0; }
+ − 52
div.contentDiv a[href ^="http://"] , div#messageBox a[href ^="http://"] { color: #80A0C0; background: url(../images/bleu/external.gif) center right no-repeat; padding-right: 16px; }
+ − 53
div.contentDiv a[href ^="https://"] , div#messageBox a[href ^="https://"] { color: #80A0C0; background: url(../images/bleu/https.gif) center right no-repeat; padding-right: 16px; }
+ − 54
div.contentDiv a[href ^="mailto:"] , div#messageBox a[href ^="mailto:"] { color: #80A0C0; background: url(../images/bleu/email.gif) center right no-repeat; padding-right: 16px; }
+ − 55
div.contentDiv a[href ^="irc://"] , div#messageBox a[href ^="irc://"] { color: #80A0C0; background: url(../images/bleu/irc.gif) center right no-repeat; padding-right: 16px; }
+ − 56
div.contentDiv a[href ^="http://"]:hover , div#messageBox a[href ^="http://"]:hover { color: #A0C0E0; background: url(../images/bleu/external.gif) center right no-repeat; padding-right: 16px; }
+ − 57
div.contentDiv a[href ^="https://"]:hover, div#messageBox a[href ^="https://"]:hover { color: #A0C0E0; background: url(../images/bleu/https.gif) center right no-repeat; padding-right: 16px; }
+ − 58
div.contentDiv a[href ^="mailto:"]:hover , div#messageBox a[href ^="mailto:"]:hover { color: #A0C0E0; background: url(../images/bleu/email.gif) center right no-repeat; padding-right: 16px; }
+ − 59
div.contentDiv a[href ^="irc://"]:hover , div#messageBox a[href ^="irc://"]:hover { color: #A0C0E0; background: url(../images/bleu/irc.gif) center right no-repeat; padding-right: 16px; }
+ − 60
+ − 61
/* Wikilinks to pages that don't exist */
+ − 62
div.contentDiv a.wikilink-nonexistent { color: #B05020; }
+ − 63
div.contentDiv a.wikilink-nonexistent:hover { color: #D06030; }
+ − 64
+ − 65
/* Well, not Midget and not comments (usually), but that's what the class is called ;-). Basically an informational window or used as a wrapper for tables. */
+ − 66
.mdg-comment, .mdg-infobox { margin-left: 1em; padding: 7px; border: 1px solid #AAAAAA; background-color: #E8E8E8; }
+ − 67
+ − 68
.tblholder { margin: 10px 0 0 0; padding: 0; border: 1px solid #AAAAAA; background-color: #E8E8E8; }
+ − 69
+ − 70
/* The beautiful tables inside what may not obviously be mdg-comment divs */
+ − 71
div.tblholder td.row1 { padding: 4px; background-color: #E0E0E0; }
+ − 72
div.tblholder td.row2 { padding: 4px; background-color: #F0F0F0; }
+ − 73
div.tblholder td.row3 { padding: 4px; background-color: #E8E8E8; }
+ − 74
div.tblholder th { padding: 4px; background-color: #7080A0; font-weight: bold; text-align: center; color: #FFFFFF; }
+ − 75
div.tblholder th.subhead { padding: 4px; background-color: #90A0B0; font-weight: bold; text-align: center; color: #FFFFFF; }
+ − 76
div.tblholder table { background-color: #FFFFFF; width: 100%; }
+ − 77
108
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
diff
changeset
+ − 78
/* Colored table cells */
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
diff
changeset
+ − 79
div.tblholder td.row1_red { padding: 4px; background-color: #F8E0E0; }
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
diff
changeset
+ − 80
div.tblholder td.row2_red { padding: 4px; background-color: #FFF0F0; }
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
diff
changeset
+ − 81
div.tblholder td.row3_red { padding: 4px; background-color: #FFE8E8; }
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
diff
changeset
+ − 82
div.tblholder td.row1_green { padding: 4px; background-color: #E0F8E0; }
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
diff
changeset
+ − 83
div.tblholder td.row2_green { padding: 4px; background-color: #F0FFF0; }
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
diff
changeset
+ − 84
div.tblholder td.row3_green { padding: 4px; background-color: #E8FFE8; }
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
diff
changeset
+ − 85
103
a8891e108c95
Several major improvements: Memberlist page added (planned since about beta 2), page group support added for non-JS ACL editor (oops!), and attempting to view a page for which you lack read permissions will get you logged.
Dan
diff
changeset
+ − 86
div.tblholder th a {
a8891e108c95
Several major improvements: Memberlist page added (planned since about beta 2), page group support added for non-JS ACL editor (oops!), and attempting to view a page for which you lack read permissions will get you logged.
Dan
diff
changeset
+ − 87
color: #FFFFFF !important;
a8891e108c95
Several major improvements: Memberlist page added (planned since about beta 2), page group support added for non-JS ACL editor (oops!), and attempting to view a page for which you lack read permissions will get you logged.
Dan
diff
changeset
+ − 88
text-decoration: underline !important;
a8891e108c95
Several major improvements: Memberlist page added (planned since about beta 2), page group support added for non-JS ACL editor (oops!), and attempting to view a page for which you lack read permissions will get you logged.
Dan
diff
changeset
+ − 89
}
a8891e108c95
Several major improvements: Memberlist page added (planned since about beta 2), page group support added for non-JS ACL editor (oops!), and attempting to view a page for which you lack read permissions will get you logged.
Dan
diff
changeset
+ − 90
a8891e108c95
Several major improvements: Memberlist page added (planned since about beta 2), page group support added for non-JS ACL editor (oops!), and attempting to view a page for which you lack read permissions will get you logged.
Dan
diff
changeset
+ − 91
div.tblholder th a:hover {
a8891e108c95
Several major improvements: Memberlist page added (planned since about beta 2), page group support added for non-JS ACL editor (oops!), and attempting to view a page for which you lack read permissions will get you logged.
Dan
diff
changeset
+ − 92
color: #FFFF00 !important;
a8891e108c95
Several major improvements: Memberlist page added (planned since about beta 2), page group support added for non-JS ACL editor (oops!), and attempting to view a page for which you lack read permissions will get you logged.
Dan
diff
changeset
+ − 93
text-decoration: underline !important;
a8891e108c95
Several major improvements: Memberlist page added (planned since about beta 2), page group support added for non-JS ACL editor (oops!), and attempting to view a page for which you lack read permissions will get you logged.
Dan
diff
changeset
+ − 94
}
a8891e108c95
Several major improvements: Memberlist page added (planned since about beta 2), page group support added for non-JS ACL editor (oops!), and attempting to view a page for which you lack read permissions will get you logged.
Dan
diff
changeset
+ − 95
0
+ − 96
/* The "page tools" bar below the site logo but above the page content
+ − 97
div.pagebar { background-color: #B0D0F0; margin-top: 0px; padding: 3px; font-size: 7pt; }
+ − 98
div.pagebar a { cursor: pointer; padding: 3px; margin-left: 3px; margin-right: 3px; text-decoration: none; color: #406080; }
+ − 99
div.pagebar a.selected { background-color: #FFFFFF; color: #000040; font-weight: bold; }
+ − 100
div.pagebar a:hover { cursor: pointer; padding: 3px; margin-left: 3px; margin-right: 3px; text-decoration: none; color: #406080; background-color: #D0F0FF; }
+ − 101
div.pagebar input { font-family: Bon Apetit, sans-serif; font-size: 7pt; border: 0; margin: 0px 0px 0px 0px; text-decoration: none; color: #406080; background-color: #E0F0FF; }
+ − 102
div.pagebar input:hover { font-family: Bon Apetit, sans-serif; font-size: 7pt; border: 0; margin: 0px 0px 0px 0px; text-decoration: none; color: #406080; background-color: #D0F0FF; }
+ − 103
div.pagebar input:focus { font-family: Bon Apetit, sans-serif; font-size: 7pt; border: 0; margin: 0px 0px 0px 0px; text-decoration: none; color: #406080; background-color: #F0F0FF; }
+ − 104
*/
+ − 105
+ − 106
/*
+ − 107
* jBox menu system
+ − 108
*/
+ − 109
+ − 110
div.menu, div.menu_nojs {
+ − 111
background-color: #B0D0F0;
+ − 112
font-size: 7pt;
+ − 113
border-width: 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
diff
changeset
+ − 115
.menu_bg {
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
+ − 116
background-color: #B0D0F0;
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
+ − 117
}
0
+ − 118
div.menu a, div.menu div.label {
+ − 119
padding: 2.5pt 5px;
+ − 120
margin-right: 3px;
+ − 121
text-decoration: none;
+ − 122
display: block;
+ − 123
float: left;
+ − 124
color: #406080;
+ − 125
}
+ − 126
div.menu_nojs a, div.menu_nojs div.label {
+ − 127
padding: 2.5pt 5px;
+ − 128
margin-right: 3px;
+ − 129
text-decoration: none;
+ − 130
display: block;
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
+ − 131
float: left;
0
+ − 132
color: #406080;
+ − 133
}
+ − 134
div.menu div.label, div.menu_nojs div.label {
+ − 135
color: #001020;
+ − 136
cursor: default;
+ − 137
}
+ − 138
div.menu span.sep, div.menu_nojs span.sep {
+ − 139
display: block;
+ − 140
float: left;
+ − 141
width: 5px;
+ − 142
}
+ − 143
div.menu div.multopts, div.menu_nojs div.multopts {
+ − 144
line-height: 17pt;
+ − 145
}
+ − 146
div.menu div.multopts a, div.menu div.multopts div.label, div.menu_nojs div.multopts a, div.menu_nojs div.multopts div.label {
+ − 147
float: none;
+ − 148
display: inline;
+ − 149
}
+ − 150
div.menu a.liteselected, div.menu a.liteselected:hover, div.menu a:hover, div.menu_nojs a.liteselected, div.menu_nojs a.liteselected:hover, div.menu_nojs a:hover {
+ − 151
color: #406080;
+ − 152
background-color: #D0F0FF;
+ − 153
}
+ − 154
div.menu input[type ^="text"], div.menu input[type ^="password"], div.menu_nojs input[type ^="text"], div.menu_nojs input[type ^="password"] {
+ − 155
border-width: 0;
+ − 156
font-size: 9pt;
+ − 157
padding: 2px 5px 3px 5px;
+ − 158
max-width: 70px;
+ − 159
background-color: #D0F0FF;
+ − 160
}
+ − 161
div.menu input[type ^="text"]:hover, div.menu input[type ^="password"]:hover, div.menu_nojs input[type ^="text"]:hover, div.menu_nojs input[type ^="password"]:hover {
+ − 162
background-color: #E0F0FF;
+ − 163
}
+ − 164
div.menu input[type ^="text"]:focus, div.menu input[type ^="password"]:focus, div.menu_nojs input[type ^="text"]:focus, div.menu_nojs input[type ^="password"]:focus {
+ − 165
background-color: #F0F0FF;
+ − 166
}
+ − 167
div.menu input[type ^="button"], div.menu input[type ^="submit"], div.menu_nojs input[type ^="button"], div.menu_nojs input[type ^="submit"] {
+ − 168
border-width: 0;
+ − 169
font-size: 9pt;
+ − 170
padding: 3px 5px;
+ − 171
max-width: 70px;
+ − 172
}
+ − 173
div.menu a.current, div.menu a.current:hover, div.menu a.selected, div.menu a.selected:hover, div.menu_nojs a.current, div.menu_nojs a.current:hover, div.menu_nojs a.selected, div.menu_nojs a.selected:hover {
+ − 174
color: #000040;
+ − 175
background-color: #FFFFFF;
359
+ − 176
/*
+ − 177
Some people like this. Most people don't.
+ − 178
-moz-border-radius: 5px 5px 0 0;
+ − 179
*/
0
+ − 180
}
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
+ − 181
div.menu ul, div.menu_nojs ul {
0
+ − 182
display: none;
+ − 183
position: absolute;
+ − 184
padding: 0;
+ − 185
margin: 0 !important;
+ − 186
background-color: #B0D0F0;
+ − 187
border-width: 0;
+ − 188
min-width: 120px;
+ − 189
}
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
+ − 190
/*
0
+ − 191
div.menu_nojs ul {
+ − 192
display: block;
+ − 193
padding: 0;
+ − 194
margin: 0 0 0 1em;
+ − 195
background-color: #B0D0F0;
+ − 196
border-width: 0;
+ − 197
min-width: 120px;
+ − 198
}
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
+ − 199
*/
0
+ − 200
div.menu ul li, div.menu_nojs ul li {
+ − 201
list-style: none;
+ − 202
}
+ − 203
div.menu ul a, div.menu_nojs ul a {
+ − 204
float: none;
+ − 205
margin: 0;
+ − 206
}
+ − 207
span.menuclear {
+ − 208
font-size: 1px;
+ − 209
height: 0px;
+ − 210
width: 0px;
+ − 211
clear: left;
+ − 212
line-height: 0px;
+ − 213
display: block;
+ − 214
}
+ − 215
+ − 216
/* Rounded corners on nearly everything */
+ − 217
td#mdg-tl { width: 12px; height: 12px; background: url(../images/bleu/border-tl.gif); }
+ − 218
td#mdg-tr { width: 12px; height: 12px; background: url(../images/bleu/border-tr.gif); }
+ − 219
td#mdg-top { background: url(../images/bleu/border-top.gif); }
+ − 220
td#mdg-l { width: 12px; height: 12px; background: url(../images/bleu/border-l.gif); }
+ − 221
td#mdg-r { width: 12px; height: 12px; background: url(../images/bleu/border-r.gif); }
+ − 222
td#mdg-bl { width: 12px; height: 12px; background: url(../images/bleu/border-tb-l.gif); }
+ − 223
td#mdg-br { width: 12px; height: 12px; background: url(../images/bleu/border-tb-r.gif); }
+ − 224
td#mdg-ml { width: 12px; height: 12px; background: url(../images/bleu/border-m-l.gif); }
+ − 225
td#mdg-mr { width: 12px; height: 12px; background: url(../images/bleu/border-m-r.gif); }
+ − 226
td#mdg-brl { width: 12px; height: 1px; background: url(../images/bleu/border-m-l.gif); }
+ − 227
td#mdg-brr { width: 12px; height: 1px; background: url(../images/bleu/border-m-r.gif); }
+ − 228
td#mdg-btl { width: 12px; height: 1px; background: url(../images/bleu/border-btm-l.gif); }
+ − 229
td#mdg-btr { width: 12px; height: 1px; background: url(../images/bleu/border-btm-r.gif); }
+ − 230
td#mdg-btcl { width: 12px; height: 12px; background: url(../images/bleu/border-bl.gif); }
+ − 231
td#mdg-btcr { width: 12px; height: 12px; background: url(../images/bleu/border-br.gif); }
+ − 232
td#mdg-btm { height: 12px; background: url(../images/bleu/border-btm.gif); }
+ − 233
td.mdg-menu-top { width: 84%; height: 12px; background: url(../images/bleu/border-menu-t.gif); margin: 0; padding: 0; background-repeat: repeat-x; font-size: 2px; }
+ − 234
td.mdg-menu-tl { width: 12px; height: 12px; background: url(../images/bleu/border-menu-l.gif); background-position: left top; background-repeat: no-repeat; }
+ − 235
td.mdg-menu-tr { width: 12px; height: 12px; background: url(../images/bleu/border-menu-r.gif); background-position: right top; background-repeat: no-repeat; }
+ − 236
td.mdg-menu-bl { width: 12px; height: 12px; background: url(../images/bleu/border-bl.gif); }
+ − 237
td.mdg-menu-br { width: 12px; height: 12px; background: url(../images/bleu/border-br.gif); }
+ − 238
td.mdg-menu-btm { height: 12px; background: url(../images/bleu/border-btm.gif); }
+ − 239
+ − 240
/* Buttons and textboxes - these settings are used almost everywhere */
315
f49e3c8b638c
Fixed focus of AJAX login form fields in IE; removed stale/unused call to $template->makeParserText() in paginate_array(); added hook page_create_request to possibly help control creation of pages of certain namespaces from plugins; fixed critical bug in user CP that prevented plugins from adding custom CP modules
Dan
diff
changeset
+ − 241
input, textarea, select, button { border: 1px solid #406080; background-color: #F2F2F2; padding: 3px; font-family: arial, helvetica, sans-serif; font-size: 8pt; }
0
+ − 242
input:hover, textarea:hover, select:hover { border: 1px solid #6080A0; background-color: #F8F8F8; padding: 3px; }
+ − 243
input:focus, textarea:focus, select:focus { border: 1px solid #90B0D0; background-color: #FFFFFF; padding: 3px; }
+ − 244
label { padding: 3px; cursor: pointer; font-family: arial, helvetica, sans-serif; font-size: 8pt; }
+ − 245
label:hover { padding: 3px; cursor: pointer; background-color: #F0F0F0; }
+ − 246
input#pageheading { font-size: 14pt; border-bottom: 1px solid #90B0D0; margin-bottom: 0; }
+ − 247
315
f49e3c8b638c
Fixed focus of AJAX login form fields in IE; removed stale/unused call to $template->makeParserText() in paginate_array(); added hook page_create_request to possibly help control creation of pages of certain namespaces from plugins; fixed critical bug in user CP that prevented plugins from adding custom CP modules
Dan
diff
changeset
+ − 248
input[type ^="button"], input[type ^="submit"], button {
0
+ − 249
background-image: url(../images/buttonbg.gif);
+ − 250
background-repeat: repeat-x;
103
a8891e108c95
Several major improvements: Memberlist page added (planned since about beta 2), page group support added for non-JS ACL editor (oops!), and attempting to view a page for which you lack read permissions will get you logged.
Dan
diff
changeset
+ − 251
color: #202020;
0
+ − 252
}
+ − 253
322
+ − 254
input[type ^="image"][disabled ^="disabled"] {
+ − 255
opacity: 0.5;
+ − 256
filter: alpha(opacity=50);
+ − 257
}
+ − 258
334
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
diff
changeset
+ − 259
input[type ^="button"][disabled ^="disabled"], input[type ^="submit"][disabled ^="disabled"], button[disabled ^="disabled"], .btn-disabled {
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
diff
changeset
+ − 260
color: #808080 !important;
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
diff
changeset
+ − 261
background-image: none !important;
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
diff
changeset
+ − 262
background-color: #e0e0e0 !important;
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
diff
changeset
+ − 263
}
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
diff
changeset
+ − 264
0
+ − 265
/* JWS window theming */
+ − 266
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; }
+ − 267
div.titlebar { background-color: #7090B0; color: #FFFFFF; font-family: Trebuchet MS, tahoma, verdana, arial, sans-serif; font-size: 9pt; padding-bottom: 4px; cursor: default; }
+ − 268
div.titlebar div.closebtn { width: 16px; height: 16px; border: 1px solid #B0D0F0; background-color: #90B0D0; display: block; }
+ − 269
div.titlebar div.closebtn:hover { width: 16px; height: 16px; border: 1px solid #FFFFFF; background-color: #B0D0F0; display: block; }
+ − 270
div.titlebar table, div.titlebar td { margin: 0; padding: 0; }
+ − 271
div.jswindow div.content { padding: 10px; margin: 0; background-color: #FFFFFF; }
+ − 272
+ − 273
/* The Wordpress-like fills behind checkboxes and their labels */
+ − 274
.catCheck { padding: 3px; }
+ − 275
.catCheck:hover { padding: 3px; background-color: #F0F0F0; }
+ − 276
+ − 277
/* Information, warning, question, error, and wait boxes */
328
dc838fd61a06
Added initial avatar support. Currently rather feature complete except for admin controls for avatar.
Dan
diff
changeset
+ − 278
div.error-box { background-image: url(../../../images/error.png); background-position: 8px 8px; background-repeat: no-repeat; background-color: #FFF4F4; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 0.5em 0 0 0; min-height: 25px; }
dc838fd61a06
Added initial avatar support. Currently rather feature complete except for admin controls for avatar.
Dan
diff
changeset
+ − 279
div.info-box { background-image: url(../../../images/info.png); background-position: 8px 8px; background-repeat: no-repeat; background-color: #F4F4FF; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 0.5em 0 0 0; min-height: 25px; }
dc838fd61a06
Added initial avatar support. Currently rather feature complete except for admin controls for avatar.
Dan
diff
changeset
+ − 280
div.warning-box { background-image: url(../../../images/warning.png); background-position: 8px 8px; background-repeat: no-repeat; background-color: #FFFFF4; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 0.5em 0 0 0; min-height: 25px; }
dc838fd61a06
Added initial avatar support. Currently rather feature complete except for admin controls for avatar.
Dan
diff
changeset
+ − 281
div.question-box { background-image: url(../../../images/question.png); background-position: 8px 8px; background-repeat: no-repeat; background-color: #F4FFF4; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 0.5em 0 0 0; min-height: 25px; }
dc838fd61a06
Added initial avatar support. Currently rather feature complete except for admin controls for avatar.
Dan
diff
changeset
+ − 282
div.wait-box { background-image: url(../../../images/wait.png); background-position: 8px 8px; background-repeat: no-repeat; background-color: #FFF4FF; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 0.5em 0 0 0; min-height: 25px; }
0
+ − 283
+ − 284
/* This stuff is mostly unused, left in for compatibility */
+ − 285
div#ajaxEditContainer table { border: 0px solid #FFFFFF; }
+ − 286
div#ajaxEditContainer td { margin: 1px; }
+ − 287
/* div#ajaxEditContainer { overflow: auto; } /* Makes ajaxEditContainer scroll horizontally in firefox if the content is too wide - prevents that ugly clipping effect */
+ − 288
div#ajaxEditContainer pre { margin-left: 1em; background-color: #F8F8F8; border: 1px dashed #90B0D0; padding: 10px; overflow: auto; max-height: 150px; }
+ − 289
+ − 290
/* toolbar */
+ − 291
div.toolbar {
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 292
border: 1px solid #3b619c;
0
+ − 293
background-color: #D0D0D0;
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 294
background-image: url(../images/tb-bkg.gif);
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 295
padding: 1px 0;
0
+ − 296
height: 22px;
+ − 297
font-family: arial, sans-serif;
+ − 298
font-size: 8pt;
+ − 299
}
+ − 300
div.toolbar ul {
+ − 301
margin: 0;
+ − 302
padding: 0;
+ − 303
}
+ − 304
div.toolbar ul li {
+ − 305
list-style: none;
+ − 306
margin: 0;
+ − 307
float: left;
+ − 308
}
+ − 309
div.toolbar a img {
+ − 310
opacity: 0.6;
+ − 311
/*filter: alpha(opacity=60);*/
+ − 312
}
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 313
div.toolbar a:hover img, div.toolbar a:focus img {
0
+ − 314
opacity: 1;
+ − 315
/*filter: alpha(opacity=100);*/
+ − 316
}
+ − 317
div.toolbar a {
+ − 318
display: block;
+ − 319
padding: 2px;
+ − 320
border: 1px solid transparent;
+ − 321
cursor: default;
+ − 322
width: auto;
+ − 323
color: #000000;
+ − 324
margin: 0 2px;
+ − 325
max-height: 16px;
+ − 326
text-decoration: none;
+ − 327
}
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 328
div.toolbar a:hover, div.toolbar a:focus {
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 329
border: 1px solid #000080;
0
+ − 330
background-color: #ceceed;
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 331
background-image: url(../images/tb-frg.gif);
0
+ − 332
color: #000000;
+ − 333
text-decoration: none;
+ − 334
}
+ − 335
div.toolbar a:active {
+ − 336
background-color: #E0E0E0;
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 337
background-image: url(../images/tb-psh.gif);
0
+ − 338
}
+ − 339
div.toolbar img {
+ − 340
margin: 0;
+ − 341
padding: 0;
+ − 342
display: inline;
+ − 343
border-width: 0px;
+ − 344
}
+ − 345
div.toolbar a span {
+ − 346
position: relative;
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 347
top: -3px !important;
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 348
}
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 349
div.toolbar a span.noimage {
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 350
position: relative;
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 351
top: 0px !important;
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 352
height: 16px !important;
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 353
display: block;
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 354
padding-left: 2px !important;
0
+ − 355
}
+ − 356
div.toolbar li span {
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 357
padding-left: 4px;
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 358
padding-right: 2px;
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 359
position: relative;
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 360
top: 4px;
0
+ − 361
}
+ − 362
+ − 363
/* vertical toolbar */
+ − 364
div.toolbar_vert {
+ − 365
border: 1px solid #909090;
+ − 366
background-color: #D0D0D0;
+ − 367
padding: 2px 0;
+ − 368
}
+ − 369
div.toolbar_vert ul {
+ − 370
margin: 0;
+ − 371
padding: 0;
+ − 372
}
+ − 373
div.toolbar_vert ul li {
+ − 374
list-style: none;
+ − 375
margin: 0;
+ − 376
}
+ − 377
div.toolbar_vert a img {
+ − 378
opacity: 0.6;
+ − 379
/*filter: alpha(opacity=60);*/
+ − 380
}
+ − 381
div.toolbar_vert a:hover img {
+ − 382
opacity: 1;
+ − 383
/*filter: alpha(opacity=100);*/
+ − 384
}
+ − 385
div.toolbar_vert a {
+ − 386
display: block;
+ − 387
padding: 2px;
+ − 388
border: 1px solid transparent;
+ − 389
cursor: default;
+ − 390
width: auto;
+ − 391
color: #000000;
+ − 392
margin: 0 2px;
+ − 393
max-height: 16px;
+ − 394
text-decoration: none;
+ − 395
}
+ − 396
div.toolbar_vert a:hover {
+ − 397
border: 1px solid #202090;
+ − 398
background-color: #ceceed;
+ − 399
color: #000000;
+ − 400
text-decoration: none;
+ − 401
}
+ − 402
div.toolbar_vert a:active {
+ − 403
border: 1px solid #A0A0A0;
+ − 404
background-color: #E0E0E0;
+ − 405
}
+ − 406
div.toolbar_vert img {
+ − 407
margin: 0;
+ − 408
padding: 0;
+ − 409
display: inline;
+ − 410
border-width: 0px;
+ − 411
}
+ − 412
div.toolbar_vert a span {
+ − 413
position: relative;
+ − 414
top: -4px;
+ − 415
}
+ − 416
div.toolbar_vert li span {
+ − 417
padding-left: 2px;
+ − 418
padding-right: 5px;
+ − 419
}
+ − 420