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
*/
468
+ − 6
0
+ − 7
/* The basics */
468
+ − 8
html,body {
+ − 9
height: 100%;
+ − 10
}
+ − 11
+ − 12
body {
+ − 13
/* color added in 1.0.2 to fix light text in dark desktop themes */
+ − 14
color: #202020;
+ − 15
margin: 0;
+ − 16
padding: 0;
+ − 17
background: url(../images/bleu/bg.png);
+ − 18
font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
+ − 19
font-size: 9pt;
+ − 20
}
+ − 21
+ − 22
body#tinymce {
+ − 23
background-color: white;
+ − 24
background-image: none;
+ − 25
}
+ − 26
+ − 27
.holder {
+ − 28
border: 1px solid #CCCCCC;
+ − 29
padding: 1px;
+ − 30
background-color: #FFFFFF;
+ − 31
color: #444444
+ − 32
}
+ − 33
+ − 34
div.pad {
+ − 35
padding: 10px;
+ − 36
}
+ − 37
+ − 38
table#title {
+ − 39
margin: 0;
+ − 40
padding: 0;
+ − 41
height: 100px;
+ − 42
background-color: #90B0D0;
+ − 43
text-align: center;
+ − 44
}
+ − 45
+ − 46
table.simple-layout td#mainhead {
+ − 47
margin: 0;
+ − 48
padding: 0;
+ − 49
background-color: #90B0D0;
+ − 50
text-align: center;
+ − 51
}
+ − 52
+ − 53
table.simple-layout td#mainhead h1 {
+ − 54
margin: 15px 0;
+ − 55
padding: 0;
+ − 56
font-size: 14pt;
+ − 57
}
0
+ − 58
+ − 59
/* Sidebar */
468
+ − 60
td.mdgSidebarHolder {
+ − 61
width: 140px;
+ − 62
}
+ − 63
892
668e6a9adf99
Oxygen (and general): cleaned up sidebar CSS, wikitext blocks are now sent through alternate block
Dan
diff
changeset
+ − 64
div.sidebar {
468
+ − 65
width: 138px;
+ − 66
background-color: #F8F8F8; border-left: 1px solid #CCC; border-right: 1px solid #CCC; padding: 1px 0px 0px 0px;
+ − 67
}
+ − 68
892
668e6a9adf99
Oxygen (and general): cleaned up sidebar CSS, wikitext blocks are now sent through alternate block
Dan
diff
changeset
+ − 69
div.sidebar .head {
468
+ − 70
background-color: #F0F0F0;
+ − 71
display: block;
+ − 72
margin: 0px 1px 1px 1px;
+ − 73
font-family: Trebuchet MS, Arial, helvetica, sans-serif;
+ − 74
font-size: 7pt;
+ − 75
cursor: pointer;
+ − 76
text-decoration: none;
+ − 77
color: #111;
+ − 78
padding: 5px;
+ − 79
font-weight: bold;
+ − 80
}
+ − 81
892
668e6a9adf99
Oxygen (and general): cleaned up sidebar CSS, wikitext blocks are now sent through alternate block
Dan
diff
changeset
+ − 82
div.sidebar .head:hover {
468
+ − 83
background-color: #F4F4F4;
+ − 84
display: block;
+ − 85
margin: 0px 1px 1px 1px;
+ − 86
font-family: Trebuchet MS, Arial, helvetica, sans-serif;
+ − 87
font-size: 7pt;
+ − 88
cursor: pointer;
+ − 89
text-decoration: none;
+ − 90
color: #111;
+ − 91
padding: 5px;
+ − 92
font-weight: bold;
+ − 93
}
+ − 94
892
668e6a9adf99
Oxygen (and general): cleaned up sidebar CSS, wikitext blocks are now sent through alternate block
Dan
diff
changeset
+ − 95
div.sidebar div.slideblock a {
468
+ − 96
background-color: #DDD;
+ − 97
display: block;
+ − 98
margin: 0px 1px;
+ − 99
border-bottom: 1px solid #FFF;
+ − 100
font-family: Trebuchet MS, Arial, helvetica, sans-serif;
+ − 101
font-size: 7pt;
+ − 102
cursor: pointer;
+ − 103
text-decoration: none;
+ − 104
color: #666;
+ − 105
padding: 5px 5px 5px 9px;
+ − 106
list-style-type: none;
+ − 107
}
+ − 108
892
668e6a9adf99
Oxygen (and general): cleaned up sidebar CSS, wikitext blocks are now sent through alternate block
Dan
diff
changeset
+ − 109
div.sidebar div.slideblock a:hover {
468
+ − 110
background-color: #EEE;
+ − 111
}
+ − 112
+ − 113
div.recttop {
+ − 114
width: 140px;
+ − 115
height: 12px;
+ − 116
margin: 0;
+ − 117
padding: 0;
+ − 118
}
+ − 119
+ − 120
td.recttoptop {
+ − 121
width: 100%;
+ − 122
height: 12px;
542
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 123
background-image: url(../images/bleu/sprite-horiz.gif);
468
+ − 124
background-repeat: repeat-x;
542
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 125
background-position: 0 -12px;
468
+ − 126
margin: 0;
+ − 127
padding: 0;
+ − 128
}
+ − 129
+ − 130
td.recttoptop:hover {
+ − 131
width: 100%;
+ − 132
height: 12px;
542
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 133
background-image: url(../images/bleu/sprite-horiz.gif);
468
+ − 134
background-repeat: repeat-x;
542
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 135
background-position: 0 -24px;
468
+ − 136
margin: 0;
+ − 137
padding: 0;
+ − 138
cursor: pointer;
+ − 139
}
+ − 140
+ − 141
div.rectbot {
+ − 142
width: 140px;
+ − 143
height: 12px;
+ − 144
margin: 0;
+ − 145
padding: 0;
+ − 146
}
+ − 147
+ − 148
td.rectbottop {
+ − 149
width: 100%;
+ − 150
height: 12px;
542
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 151
background-image: url(../images/bleu/sprite-horiz.gif);
468
+ − 152
background-repeat: repeat-x;
542
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 153
background-position: 0 -48px;
468
+ − 154
margin: 0;
+ − 155
padding: 0;
+ − 156
}
+ − 157
+ − 158
div.slideblock, .dbx-content {
+ − 159
overflow: hidden;
+ − 160
background-color: #DDD;
+ − 161
}
+ − 162
+ − 163
div.slideblock2 {
+ − 164
overflow: hidden;
+ − 165
background-color: #DDD;
+ − 166
margin: 0px 1px 0px 1px;
+ − 167
border-bottom: 1px solid #FFF;
892
668e6a9adf99
Oxygen (and general): cleaned up sidebar CSS, wikitext blocks are now sent through alternate block
Dan
diff
changeset
+ − 168
font-size: 8pt;
668e6a9adf99
Oxygen (and general): cleaned up sidebar CSS, wikitext blocks are now sent through alternate block
Dan
diff
changeset
+ − 169
}
668e6a9adf99
Oxygen (and general): cleaned up sidebar CSS, wikitext blocks are now sent through alternate block
Dan
diff
changeset
+ − 170
668e6a9adf99
Oxygen (and general): cleaned up sidebar CSS, wikitext blocks are now sent through alternate block
Dan
diff
changeset
+ − 171
div.slideblock2 p {
668e6a9adf99
Oxygen (and general): cleaned up sidebar CSS, wikitext blocks are now sent through alternate block
Dan
diff
changeset
+ − 172
margin: 7px 4px;
468
+ − 173
}
+ − 174
+ − 175
.dbx-handle {
+ − 176
cursor: move !important;
+ − 177
}
0
+ − 178
+ − 179
/* The credits thingy at the bottom */
468
+ − 180
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; }
+ − 181
div#credits a { color: #90B0D0; text-decoration: none; }
+ − 182
div#credits a:hover { color: #80A0C0; text-decoration: underline; }
0
+ − 183
+ − 184
/* The link hidden in plain "site" at the top of the page */
468
+ − 185
td#mainhead a { text-decoration: none; color: #000000; }
+ − 186
td#mainhead a:hover { text-decoration: none; color: #000000; border-bottom: 1px dotted #406080; }
0
+ − 187
+ − 188
/* Text, headings, and links inside the main div (usually #ajaxEditContainer but used some other places as well) */
795
+ − 189
div.contentDiv h1 {
+ − 190
margin-top: 0.3em;
+ − 191
}
+ − 192
+ − 193
div.contentDiv h1, div.contentDiv h2 {
468
+ − 194
border-bottom: 1px solid #90B0D0;
+ − 195
margin-bottom: 0;
+ − 196
}
+ − 197
+ − 198
div.contentDiv h3 {
+ − 199
font-size: 11pt;
+ − 200
font-weight: bold;
+ − 201
}
+ − 202
+ − 203
div.contentDiv ul li, div#messageBox ul li {
+ − 204
list-style: url(../images/bleu/bullet.gif);
+ − 205
}
+ − 206
+ − 207
div.contentDiv p, div#messageBox p {
+ − 208
margin-left: 1.0em;
+ − 209
}
+ − 210
+ − 211
table.simple-layout div.contentDiv p {
+ − 212
margin-left: 0em;
+ − 213
}
+ − 214
+ − 215
div.contentDiv blockquote, div#messageBox blockquote {
+ − 216
background-color: #F4F4F4;
+ − 217
border: 1px dotted #406080;
+ − 218
margin: 1em;
+ − 219
padding: 10px;
+ − 220
max-height: 250px;
+ − 221
overflow: auto;
+ − 222
}
+ − 223
+ − 224
div.contentDiv, div#messageBox {
+ − 225
font-size: 9pt;
+ − 226
}
+ − 227
532
03429d7b1537
Finally fixed link coloring settings in Oxygen Bleu; added compatibility wrapper for people that "ajaxLogonInit" over "ajaxLoginInit"
Dan
diff
changeset
+ − 228
a {
468
+ − 229
color: #7090B0;
+ − 230
}
+ − 231
532
03429d7b1537
Finally fixed link coloring settings in Oxygen Bleu; added compatibility wrapper for people that "ajaxLogonInit" over "ajaxLoginInit"
Dan
diff
changeset
+ − 232
a:hover {
468
+ − 233
color: #90B0D0;
+ − 234
}
+ − 235
+ − 236
div.contentDiv a[href ^="http://"], div#messageBox a[href ^="http://"] {
+ − 237
color: #80A0C0;
+ − 238
background: url(../images/bleu/external.gif) center right no-repeat;
+ − 239
padding-right: 16px;
+ − 240
}
+ − 241
+ − 242
div.contentDiv a[href ^="https://"], div#messageBox a[href ^="https://"] {
+ − 243
color: #80A0C0;
+ − 244
background: url(../images/bleu/https.gif) center right no-repeat;
+ − 245
padding-right: 16px;
+ − 246
}
+ − 247
+ − 248
div.contentDiv a[href ^="mailto:"], div#messageBox a[href ^="mailto:"] {
+ − 249
color: #80A0C0;
+ − 250
background: url(../images/bleu/email.gif) center right no-repeat;
+ − 251
padding-right: 16px;
+ − 252
}
+ − 253
+ − 254
div.contentDiv a[href ^="irc://"], div#messageBox a[href ^="irc://"] {
+ − 255
color: #80A0C0;
+ − 256
background: url(../images/bleu/irc.gif) center right no-repeat;
+ − 257
padding-right: 16px;
+ − 258
}
+ − 259
+ − 260
div.contentDiv a[href ^="http://"]:hover, div#messageBox a[href ^="http://"]:hover {
+ − 261
color: #A0C0E0;
+ − 262
background: url(../images/bleu/external.gif) center right no-repeat;
+ − 263
padding-right: 16px;
+ − 264
}
+ − 265
+ − 266
div.contentDiv a[href ^="https://"]:hover, div#messageBox a[href ^="https://"]:hover {
+ − 267
color: #A0C0E0;
+ − 268
background: url(../images/bleu/https.gif) center right no-repeat;
+ − 269
padding-right: 16px;
+ − 270
}
+ − 271
+ − 272
div.contentDiv a[href ^="mailto:"]:hover, div#messageBox a[href ^="mailto:"]:hover {
+ − 273
color: #A0C0E0;
+ − 274
background: url(../images/bleu/email.gif) center right no-repeat;
+ − 275
padding-right: 16px;
+ − 276
}
+ − 277
+ − 278
div.contentDiv a[href ^="irc://"]:hover, div#messageBox a[href ^="irc://"]:hover {
+ − 279
color: #A0C0E0;
+ − 280
background: url(../images/bleu/irc.gif) center right no-repeat;
+ − 281
padding-right: 16px;
+ − 282
}
0
+ − 283
+ − 284
/* Wikilinks to pages that don't exist */
468
+ − 285
div.contentDiv a.wikilink-nonexistent {
+ − 286
color: #B05020;
+ − 287
}
+ − 288
+ − 289
div.contentDiv a.wikilink-nonexistent:hover {
+ − 290
color: #D06030;
+ − 291
}
0
+ − 292
+ − 293
/* 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. */
468
+ − 294
.mdg-comment, .mdg-infobox {
+ − 295
margin-left: 1em;
+ − 296
padding: 7px;
+ − 297
border: 1px solid #AAAAAA;
+ − 298
background-color: #E8E8E8;
+ − 299
}
0
+ − 300
468
+ − 301
.tblholder {
+ − 302
margin: 10px 0 0 0;
+ − 303
padding: 0;
+ − 304
border: 1px solid #AAAAAA;
+ − 305
background-color: #E8E8E8;
+ − 306
}
0
+ − 307
+ − 308
/* The beautiful tables inside what may not obviously be mdg-comment divs */
468
+ − 309
div.tblholder td.row1 {
+ − 310
padding: 4px;
+ − 311
background-color: #E0E0E0;
+ − 312
}
+ − 313
+ − 314
div.tblholder td.row2 {
+ − 315
padding: 4px;
+ − 316
background-color: #F0F0F0;
+ − 317
}
+ − 318
+ − 319
div.tblholder td.row3 {
+ − 320
padding: 4px;
+ − 321
background-color: #E8E8E8;
+ − 322
}
+ − 323
+ − 324
div.tblholder th {
+ − 325
padding: 4px;
+ − 326
background-color: #7080A0;
+ − 327
font-weight: bold;
+ − 328
text-align: center;
+ − 329
color: #FFFFFF;
+ − 330
}
+ − 331
+ − 332
div.tblholder th.subhead {
+ − 333
padding: 4px;
+ − 334
background-color: #90A0B0;
+ − 335
font-weight: bold;
+ − 336
text-align: center;
+ − 337
color: #FFFFFF;
+ − 338
}
+ − 339
+ − 340
div.tblholder table {
+ − 341
background-color: #FFFFFF;
+ − 342
width: 100%;
+ − 343
}
0
+ − 344
108
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
diff
changeset
+ − 345
/* Colored table cells */
468
+ − 346
div.tblholder td.row1_red {
+ − 347
padding: 4px;
+ − 348
background-color: #F8E0E0;
+ − 349
}
+ − 350
+ − 351
div.tblholder td.row2_red {
+ − 352
padding: 4px;
+ − 353
background-color: #FFF0F0;
+ − 354
}
+ − 355
+ − 356
div.tblholder td.row3_red {
+ − 357
padding: 4px;
+ − 358
background-color: #FFE8E8;
+ − 359
}
+ − 360
+ − 361
div.tblholder td.row1_green {
+ − 362
padding: 4px;
+ − 363
background-color: #E0F8E0;
+ − 364
}
+ − 365
+ − 366
div.tblholder td.row2_green {
+ − 367
padding: 4px;
+ − 368
background-color: #F0FFF0;
+ − 369
}
+ − 370
+ − 371
div.tblholder td.row3_green {
+ − 372
padding: 4px;
+ − 373
background-color: #E8FFE8;
+ − 374
}
108
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
diff
changeset
+ − 375
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
+ − 376
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
+ − 377
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
+ − 378
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
+ − 379
}
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
+ − 380
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
+ − 381
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
+ − 382
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
+ − 383
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
+ − 384
}
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
+ − 385
0
+ − 386
/*
+ − 387
* jBox menu system
+ − 388
*/
+ − 389
+ − 390
div.menu, div.menu_nojs {
+ − 391
background-color: #B0D0F0;
+ − 392
font-size: 7pt;
+ − 393
border-width: 0;
+ − 394
}
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
+ − 395
.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
+ − 396
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
+ − 397
}
0
+ − 398
div.menu a, div.menu div.label {
+ − 399
padding: 2.5pt 5px;
+ − 400
margin-right: 3px;
+ − 401
text-decoration: none;
+ − 402
display: block;
+ − 403
float: left;
+ − 404
color: #406080;
+ − 405
}
+ − 406
div.menu_nojs a, div.menu_nojs div.label {
+ − 407
padding: 2.5pt 5px;
+ − 408
margin-right: 3px;
+ − 409
text-decoration: none;
+ − 410
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
+ − 411
float: left;
0
+ − 412
color: #406080;
+ − 413
}
+ − 414
div.menu div.label, div.menu_nojs div.label {
+ − 415
color: #001020;
+ − 416
cursor: default;
+ − 417
}
+ − 418
div.menu span.sep, div.menu_nojs span.sep {
+ − 419
display: block;
+ − 420
float: left;
+ − 421
width: 5px;
+ − 422
}
+ − 423
div.menu div.multopts, div.menu_nojs div.multopts {
+ − 424
line-height: 17pt;
+ − 425
}
+ − 426
div.menu div.multopts a, div.menu div.multopts div.label, div.menu_nojs div.multopts a, div.menu_nojs div.multopts div.label {
+ − 427
float: none;
+ − 428
display: inline;
+ − 429
}
+ − 430
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 {
+ − 431
color: #406080;
+ − 432
background-color: #D0F0FF;
+ − 433
}
+ − 434
div.menu input[type ^="text"], div.menu input[type ^="password"], div.menu_nojs input[type ^="text"], div.menu_nojs input[type ^="password"] {
+ − 435
border-width: 0;
+ − 436
font-size: 9pt;
+ − 437
padding: 2px 5px 3px 5px;
+ − 438
max-width: 70px;
+ − 439
background-color: #D0F0FF;
+ − 440
}
+ − 441
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 {
+ − 442
background-color: #E0F0FF;
+ − 443
}
+ − 444
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 {
+ − 445
background-color: #F0F0FF;
+ − 446
}
+ − 447
div.menu input[type ^="button"], div.menu input[type ^="submit"], div.menu_nojs input[type ^="button"], div.menu_nojs input[type ^="submit"] {
+ − 448
border-width: 0;
+ − 449
font-size: 9pt;
+ − 450
padding: 3px 5px;
+ − 451
max-width: 70px;
+ − 452
}
+ − 453
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 {
+ − 454
color: #000040;
+ − 455
background-color: #FFFFFF;
+ − 456
}
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
+ − 457
div.menu ul, div.menu_nojs ul {
0
+ − 458
display: none;
+ − 459
position: absolute;
+ − 460
padding: 0;
+ − 461
margin: 0 !important;
+ − 462
background-color: #B0D0F0;
+ − 463
border-width: 0;
+ − 464
min-width: 120px;
+ − 465
}
+ − 466
div.menu ul li, div.menu_nojs ul li {
+ − 467
list-style: none;
+ − 468
}
+ − 469
div.menu ul a, div.menu_nojs ul a {
+ − 470
float: none;
+ − 471
margin: 0;
+ − 472
}
+ − 473
span.menuclear {
+ − 474
font-size: 1px;
+ − 475
height: 0px;
+ − 476
width: 0px;
+ − 477
clear: left;
+ − 478
line-height: 0px;
+ − 479
display: block;
+ − 480
}
+ − 481
+ − 482
/* Rounded corners on nearly everything */
542
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 483
td#mdg-tl { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-horiz.gif); background-position: -48px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 484
td#mdg-tr { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-horiz.gif); background-position: -60px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 485
td#mdg-top { background-image: url(../images/bleu/sprite-horiz.gif); background-position: 0 -36px; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 486
td#mdg-l { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-vert.gif); background-position: -24px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 487
td#mdg-r { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-vert.gif); background-position: -36px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 488
td#mdg-bl { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-vert.gif); background-position: -72px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 489
td#mdg-br { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-vert.gif); background-position: -84px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 490
td#mdg-ml { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-vert.gif); background-position: -48px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 491
td#mdg-brl { width: 12px; height: 1px; background-image: url(../images/bleu/sprite-vert.gif); background-position: -48px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 492
td#mdg-mr { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-vert.gif); background-position: -60px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 493
td#mdg-brr { width: 12px; height: 1px; background-image: url(../images/bleu/sprite-vert.gif); background-position: -60px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 494
td#mdg-btl { width: 12px; height: 1px; background-image: url(../images/bleu/sprite-vert.gif); background-position: 0 0 ; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 495
td#mdg-btr { width: 12px; height: 1px; background-image: url(../images/bleu/sprite-vert.gif); background-position: -12px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 496
td#mdg-btcl { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-horiz.gif); background-position: -24px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 497
td.mdg-menu-bl { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-horiz.gif); background-position: -24px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 498
td#mdg-btcr { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-horiz.gif); background-position: -36px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 499
td.mdg-menu-br { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-horiz.gif); background-position: -36px 0; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 500
td.mdg-menu-top { width: 84%; height: 12px; background-image: url(../images/bleu/sprite-horiz.gif); background-position: 0 0 ; margin: 0; padding: 0; background-repeat: repeat-x; font-size: 2px; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 501
td.mdg-menu-tl { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-horiz.gif); background-position: 0 0 ; background-position: left top; background-repeat: no-repeat; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 502
td.mdg-menu-tr { width: 12px; height: 12px; background-image: url(../images/bleu/sprite-horiz.gif); background-position: 0 0 ; background-position: right top; background-repeat: no-repeat; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 503
td.mdg-menu-btm { height: 12px; background-image: url(../images/bleu/sprite-horiz.gif); background-position: 0 0 ; }
5841df0ab575
Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
diff
changeset
+ − 504
td#mdg-btm { height: 12px; background-image: url(../images/bleu/sprite-horiz.gif); background-position: 0 -48px; }
0
+ − 505
+ − 506
/* Buttons and textboxes - these settings are used almost everywhere */
468
+ − 507
input, textarea, select, button {
+ − 508
border: 1px solid #406080;
+ − 509
background-color: #F2F2F2;
837
+ − 510
color: #202020;
468
+ − 511
padding: 3px;
+ − 512
font-family: arial, helvetica, sans-serif;
+ − 513
font-size: 8pt;
+ − 514
}
+ − 515
+ − 516
input:hover, textarea:hover, select:hover {
+ − 517
border: 1px solid #6080A0;
+ − 518
background-color: #F8F8F8;
+ − 519
padding: 3px;
+ − 520
}
+ − 521
+ − 522
input:focus, textarea:focus, select:focus {
+ − 523
border: 1px solid #90B0D0;
+ − 524
background-color: #FFFFFF;
+ − 525
padding: 3px;
+ − 526
}
+ − 527
701
dd80cde96a6c
Autocomplete further stabilized. Made Special:PasswordReset and Special:Register prevent use if logged in.
Dan
diff
changeset
+ − 528
input.ac_loading {
dd80cde96a6c
Autocomplete further stabilized. Made Special:PasswordReset and Special:Register prevent use if logged in.
Dan
diff
changeset
+ − 529
background-image: url(../../../images/loading.gif);
dd80cde96a6c
Autocomplete further stabilized. Made Special:PasswordReset and Special:Register prevent use if logged in.
Dan
diff
changeset
+ − 530
background-position: right center;
dd80cde96a6c
Autocomplete further stabilized. Made Special:PasswordReset and Special:Register prevent use if logged in.
Dan
diff
changeset
+ − 531
background-repeat: no-repeat;
dd80cde96a6c
Autocomplete further stabilized. Made Special:PasswordReset and Special:Register prevent use if logged in.
Dan
diff
changeset
+ − 532
}
dd80cde96a6c
Autocomplete further stabilized. Made Special:PasswordReset and Special:Register prevent use if logged in.
Dan
diff
changeset
+ − 533
468
+ − 534
label {
+ − 535
padding: 3px;
+ − 536
cursor: pointer;
+ − 537
font-family: arial, helvetica, sans-serif;
+ − 538
font-size: 8pt;
+ − 539
}
+ − 540
+ − 541
label:hover {
+ − 542
padding: 3px;
+ − 543
cursor: pointer;
+ − 544
background-color: #F0F0F0;
+ − 545
}
+ − 546
+ − 547
input#pageheading {
795
+ − 548
font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
+ − 549
font-size: 18pt;
+ − 550
font-weight: bold;
+ − 551
border-width: 0 0 1px 0;
+ − 552
width: 100%;
468
+ − 553
border-bottom: 1px solid #90B0D0;
795
+ − 554
margin: 0;
+ − 555
padding: 0;
837
+ − 556
color: #202020;
795
+ − 557
}
+ − 558
+ − 559
input#pageheading:focus {
+ − 560
background-color: #fafafa;
468
+ − 561
}
0
+ − 562
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
+ − 563
input[type ^="button"], input[type ^="submit"], button {
552
+ − 564
background-image: url(../images/bleu/sprite-horiz.gif);
+ − 565
background-position: 0% -60px;
0
+ − 566
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
+ − 567
color: #202020;
0
+ − 568
}
+ − 569
322
+ − 570
input[type ^="image"][disabled ^="disabled"] {
+ − 571
opacity: 0.5;
+ − 572
filter: alpha(opacity=50);
+ − 573
}
+ − 574
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
+ − 575
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
+ − 576
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
+ − 577
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
+ − 578
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
+ − 579
}
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
+ − 580
468
+ − 581
/* The Wordpress-like fills behind checkboxes and their labels */
+ − 582
.catCheck {
+ − 583
padding: 3px;
+ − 584
}
0
+ − 585
468
+ − 586
.catCheck:hover {
+ − 587
padding: 3px;
+ − 588
background-color: #F0F0F0;
+ − 589
}
0
+ − 590
+ − 591
/* Information, warning, question, error, and wait boxes */
468
+ − 592
div.error-box {
+ − 593
background-image: url(../../../images/error.png);
+ − 594
background-position: 8px 8px;
+ − 595
background-repeat: no-repeat;
+ − 596
background-color: #FFF4F4;
+ − 597
border: 1px dashed #406080;
+ − 598
padding: 10px 10px 10px 50px;
+ − 599
margin: 0.5em 0 0 0;
+ − 600
min-height: 25px;
+ − 601
}
+ − 602
+ − 603
div.info-box {
+ − 604
background-image: url(../../../images/info.png);
+ − 605
background-position: 8px 8px;
+ − 606
background-repeat: no-repeat;
+ − 607
background-color: #F4F4FF;
+ − 608
border: 1px dashed #406080;
+ − 609
padding: 10px 10px 10px 50px;
+ − 610
margin: 0.5em 0 0 0;
+ − 611
min-height: 25px;
+ − 612
}
+ − 613
+ − 614
div.warning-box {
+ − 615
background-image: url(../../../images/warning.png);
+ − 616
background-position: 8px 8px;
+ − 617
background-repeat: no-repeat;
+ − 618
background-color: #FFFFF4;
+ − 619
border: 1px dashed #406080;
+ − 620
padding: 10px 10px 10px 50px;
+ − 621
margin: 0.5em 0 0 0;
+ − 622
min-height: 25px;
+ − 623
}
+ − 624
+ − 625
div.question-box {
+ − 626
background-image: url(../../../images/question.png);
+ − 627
background-position: 8px 8px;
+ − 628
background-repeat: no-repeat;
+ − 629
background-color: #F4FFF4;
+ − 630
border: 1px dashed #406080;
+ − 631
padding: 10px 10px 10px 50px;
+ − 632
margin: 0.5em 0 0 0;
+ − 633
min-height: 25px;
+ − 634
}
+ − 635
+ − 636
div.wait-box {
+ − 637
background-image: url(../../../images/wait.png);
+ − 638
background-position: 8px 8px;
+ − 639
background-repeat: no-repeat;
+ − 640
background-color: #FFF4FF;
+ − 641
border: 1px dashed #406080;
+ − 642
padding: 10px 10px 10px 50px;
+ − 643
margin: 0.5em 0 0 0;
+ − 644
min-height: 25px;
+ − 645
}
0
+ − 646
+ − 647
/* This stuff is mostly unused, left in for compatibility */
468
+ − 648
div#ajaxEditContainer table {
+ − 649
border: 0px solid #FFFFFF;
+ − 650
}
+ − 651
+ − 652
div#ajaxEditContainer td {
+ − 653
margin: 1px;
+ − 654
}
+ − 655
+ − 656
div#ajaxEditContainer pre {
+ − 657
margin-left: 1em;
+ − 658
background-color: #F8F8F8;
+ − 659
border: 1px dashed #90B0D0;
+ − 660
padding: 10px;
+ − 661
overflow: auto;
+ − 662
max-height: 150px;
+ − 663
}
0
+ − 664
+ − 665
/* toolbar */
+ − 666
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
+ − 667
border: 1px solid #3b619c;
0
+ − 668
background-color: #D0D0D0;
552
+ − 669
background-image: url(../images/bleu/sprite-horiz.gif);
+ − 670
background-position: 0 -90px;
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 671
padding: 1px 0;
0
+ − 672
height: 22px;
+ − 673
font-family: arial, sans-serif;
+ − 674
font-size: 8pt;
+ − 675
}
+ − 676
div.toolbar ul {
+ − 677
margin: 0;
+ − 678
padding: 0;
+ − 679
}
+ − 680
div.toolbar ul li {
+ − 681
list-style: none;
+ − 682
margin: 0;
+ − 683
float: left;
+ − 684
}
+ − 685
div.toolbar a img {
+ − 686
opacity: 0.6;
+ − 687
}
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 688
div.toolbar a:hover img, div.toolbar a:focus img {
0
+ − 689
opacity: 1;
+ − 690
}
+ − 691
div.toolbar a {
+ − 692
display: block;
+ − 693
padding: 2px;
+ − 694
border: 1px solid transparent;
+ − 695
cursor: default;
+ − 696
width: auto;
+ − 697
color: #000000;
+ − 698
margin: 0 2px;
+ − 699
max-height: 16px;
+ − 700
text-decoration: none;
+ − 701
}
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 702
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
+ − 703
border: 1px solid #000080;
0
+ − 704
background-color: #ceceed;
552
+ − 705
background-image: url(../images/bleu/sprite-horiz.gif);
+ − 706
background-position: 0 -118px;
0
+ − 707
color: #000000;
+ − 708
text-decoration: none;
+ − 709
}
+ − 710
div.toolbar a:active {
+ − 711
background-color: #E0E0E0;
552
+ − 712
background-position: 0 -138px;
0
+ − 713
}
+ − 714
div.toolbar img {
+ − 715
margin: 0;
+ − 716
padding: 0;
+ − 717
display: inline;
+ − 718
border-width: 0px;
+ − 719
}
+ − 720
div.toolbar a span {
+ − 721
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
+ − 722
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
+ − 723
}
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
diff
changeset
+ − 724
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
+ − 725
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
+ − 726
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
+ − 727
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
+ − 728
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
+ − 729
padding-left: 2px !important;
0
+ − 730
}
+ − 731
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
+ − 732
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
+ − 733
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
+ − 734
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
+ − 735
top: 4px;
0
+ − 736
}
+ − 737
+ − 738
/* vertical toolbar */
+ − 739
div.toolbar_vert {
+ − 740
border: 1px solid #909090;
+ − 741
background-color: #D0D0D0;
+ − 742
padding: 2px 0;
+ − 743
}
+ − 744
div.toolbar_vert ul {
+ − 745
margin: 0;
+ − 746
padding: 0;
+ − 747
}
+ − 748
div.toolbar_vert ul li {
+ − 749
list-style: none;
+ − 750
margin: 0;
+ − 751
}
+ − 752
div.toolbar_vert a img {
+ − 753
opacity: 0.6;
+ − 754
/*filter: alpha(opacity=60);*/
+ − 755
}
+ − 756
div.toolbar_vert a:hover img {
+ − 757
opacity: 1;
+ − 758
/*filter: alpha(opacity=100);*/
+ − 759
}
+ − 760
div.toolbar_vert a {
+ − 761
display: block;
+ − 762
padding: 2px;
+ − 763
border: 1px solid transparent;
+ − 764
cursor: default;
+ − 765
width: auto;
+ − 766
color: #000000;
+ − 767
margin: 0 2px;
+ − 768
max-height: 16px;
+ − 769
text-decoration: none;
+ − 770
}
+ − 771
div.toolbar_vert a:hover {
+ − 772
border: 1px solid #202090;
+ − 773
background-color: #ceceed;
+ − 774
color: #000000;
+ − 775
text-decoration: none;
+ − 776
}
+ − 777
div.toolbar_vert a:active {
+ − 778
border: 1px solid #A0A0A0;
+ − 779
background-color: #E0E0E0;
+ − 780
}
+ − 781
div.toolbar_vert img {
+ − 782
margin: 0;
+ − 783
padding: 0;
+ − 784
display: inline;
+ − 785
border-width: 0px;
+ − 786
}
+ − 787
div.toolbar_vert a span {
+ − 788
position: relative;
+ − 789
top: -4px;
+ − 790
}
+ − 791
div.toolbar_vert li span {
+ − 792
padding-left: 2px;
+ − 793
padding-right: 5px;
+ − 794
}
+ − 795
885
a86a69394a95
Major revamp to sidebar editor. Some behavioral changes as well as being based on jQuery UI Sortables. Creation interface remains the same, but better strings merged in from stable.
Dan
diff
changeset
+ − 796
div.toolbar_vert li > span {
a86a69394a95
Major revamp to sidebar editor. Some behavioral changes as well as being based on jQuery UI Sortables. Creation interface remains the same, but better strings merged in from stable.
Dan
diff
changeset
+ − 797
display: block;
a86a69394a95
Major revamp to sidebar editor. Some behavioral changes as well as being based on jQuery UI Sortables. Creation interface remains the same, but better strings merged in from stable.
Dan
diff
changeset
+ − 798
padding: 4px 5px;
a86a69394a95
Major revamp to sidebar editor. Some behavioral changes as well as being based on jQuery UI Sortables. Creation interface remains the same, but better strings merged in from stable.
Dan
diff
changeset
+ − 799
}
a86a69394a95
Major revamp to sidebar editor. Some behavioral changes as well as being based on jQuery UI Sortables. Creation interface remains the same, but better strings merged in from stable.
Dan
diff
changeset
+ − 800
672
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 801
/*
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 802
* Userpage styles
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 803
*/
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 804
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 805
ul.userpage_links li {
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 806
background-image: url('../images/buttonbg.gif');
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 807
background-repeat: repeat-x;
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 808
}
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 809
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 810
ul.userpage_links li a {
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 811
color: #202020;
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 812
}
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 813
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 814
ul.userpage_links li.userpage_tab_active {
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 815
background-image: url('../images/buttonbg-lite.gif');
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 816
}
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 817
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 818
ul.userpage_links li:hover {
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 819
background-image: url('../images/buttonbg-lite.gif');
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 820
border-color: #404040 #404040 #ffffff #404040;
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 821
border-bottom-width: 0;
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 822
}
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 823
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 824
ul.userpage_links li.userpage_tab_active:hover {
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 825
border-bottom-width: 1px;
08a7875258b4
Added tab-based interface to userpage UI. Yes, it is plugin expansible, and yes, it breaks existing plugins that add code to the userpage (but that can be fixed with a "colspan=4")
Dan
diff
changeset
+ − 826
}