| [ Root ] [ Search ] [ Index ] |
PHP Cross Reference of bbPress TrunkProvided by Yoast |
[Summary view] [Print] [Text view]
1 /* 2 Start with some basic resets 3 */ 4 5 /* 6 Copyright (c) 2009, Yahoo! Inc. All rights reserved. 7 Code licensed under the BSD License: 8 http://developer.yahoo.net/yui/license.txt 9 version: 2.7.0 10 */ 11 html{color:#000;background:#FFF;} 12 body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;} 13 table{border-collapse:collapse;border-spacing:0;} 14 fieldset,img{border:0;} 15 address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;} 16 del,ins{text-decoration:none;} 17 li{list-style:none;} 18 caption,th{text-align:left;} 19 h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;} 20 q:before,q:after{content:'';} 21 abbr,acronym{border:0;font-variant:normal;} 22 sup{vertical-align:baseline;} 23 sub{vertical-align:baseline;} 24 legend{color:#000;} 25 input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;} 26 input,button,textarea,select{*font-size:100%;} 27 body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;} 28 select,input,button,textarea,button{font:99% arial,helvetica,clean,sans-serif;} 29 table{font-size:inherit;font:100%;} 30 pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;} 31 32 33 html { 34 height: 100%; 35 background-color: rgb(249, 249, 249); 36 } 37 38 body { 39 height: 100%; 40 min-width: 785px; 41 color: rgb(51, 51, 51); 42 line-height: 1.4em; 43 font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif; 44 font-size: 0.8em; 45 } 46 47 a { 48 outline: none; 49 } 50 51 div#bbWrap { 52 height: auto; 53 min-height: 100%; 54 width: 100%; 55 } 56 57 div#bbContent { 58 height: 100%; 59 padding-bottom: 45px; 60 } 61 62 63 pre { 64 /* http://www.longren.org/2006/09/27/wrapping-text-inside-pre-tags/ */ 65 white-space: pre-wrap; /* css-3 */ 66 white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */ 67 white-space: -pre-wrap; /* Opera 4-6 */ 68 white-space: -o-pre-wrap; /* Opera 7 */ 69 word-wrap: break-word; /* Internet Explorer 5.5+ */ 70 } 71 72 /* Header */ 73 74 div#bbHead { 75 position: relative; 76 background-color: rgb(70, 70, 70); 77 } 78 79 div#bbHead h1 { 80 padding: 10px 0 5px 39px; 81 margin-left: 16px; 82 min-height: 31px; 83 background: transparent url('images/admin-header-logo.gif') no-repeat 0 8px; 84 font: normal normal normal 22px/normal Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; 85 color: white; 86 } 87 88 div#bbHead h1 a { 89 text-decoration: none; 90 } 91 92 div#bbHead h1 a span { 93 color: rgb(255, 255, 255); 94 } 95 96 div#bbHead h1 a:hover span { 97 text-decoration: underline; 98 } 99 100 div#bbHead h1 a em { 101 background: rgb(88, 88, 88) url('images/visit-site-button-grad.gif') repeat-x 0 0; 102 color: rgb(170, 170, 170); 103 text-shadow: rgb(63, 63, 63) 0px -1px 0px; 104 -moz-border-radius: 3px; 105 -khtml-border-radius: 3px; 106 -webkit-border-radius: 3px; 107 border-radius: 3px; 108 cursor: pointer; 109 display: inline-block; 110 font-size: 0.5em; 111 font-style: normal; 112 line-height: 17px; 113 margin-left: 5px; 114 padding: 0px 6px; 115 vertical-align: middle; 116 } 117 118 div#bbHead h1 a:hover em { 119 color: rgb(255, 255, 255); 120 } 121 122 div#bbHead h1 a:active em { 123 background-position: 0 -27px; 124 } 125 126 div#bbUserInfo { 127 position: absolute; 128 top: 14px; 129 right: 15px; 130 font-size: 0.95em; 131 color: rgb(153, 153, 153); 132 } 133 134 div#bbUserInfo a { 135 color: rgb(204, 204, 204); 136 text-decoration: none; 137 } 138 139 div#bbUserInfo a:hover { 140 color: rgb(255, 255, 255); 141 text-decoration: underline; 142 } 143 144 145 146 147 /* Body */ 148 149 div#bbBody { 150 margin-left: 180px; 151 padding-right: 15px; 152 } 153 154 body.bb-menu-folded div#bbBody { 155 margin-left: 65px; 156 } 157 158 h2 { 159 display: block; 160 color: rgb(70, 70, 70); 161 font: italic normal normal 1.9em/1.45em Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; 162 padding: 14px 15px 3px 0; 163 text-shadow: rgb(255, 255, 255) 0px 1px 0px; 164 background: transparent none no-repeat 0 0; 165 margin-left: -5px; 166 } 167 168 h2 span.subtitle { 169 font-size: 0.75em; 170 padding-left: 25px; 171 } 172 173 body.bb-admin-dashboard h2 { 174 padding-left: 47px; 175 background-image: url('images/icons32.png'); 176 background-position: 0 -172px; 177 } 178 179 body.bb-admin-forums h2 { 180 padding-left: 47px; 181 background-image: url('images/icons32.png'); 182 background-position: 0 -981px; 183 } 184 185 body.bb-admin-topics h2 { 186 padding-left: 47px; 187 background-image: url('images/icons32.png'); 188 background-position: 0 -1071px; 189 } 190 191 body.bb-admin-posts h2 { 192 padding-left: 47px; 193 background-image: url('images/icons32.png'); 194 background-position: 0 -1161px; 195 } 196 197 body.bb-admin-appearance h2 { 198 padding-left: 47px; 199 background-image: url('images/icons32.png'); 200 background-position: 0 8px; 201 } 202 203 body.bb-admin-plugins h2 { 204 padding-left: 47px; 205 background-image: url('images/icons32.png'); 206 background-position: 0 -532px; 207 } 208 209 body.bb-admin-users h2 { 210 padding-left: 47px; 211 background-image: url('images/icons32.png'); 212 background-position: 0 -891px; 213 } 214 215 body.bb-admin-user-manage h2 { 216 padding-left: 47px; 217 background-image: url('images/icons32.png'); 218 background-position: 0 -891px; 219 } 220 221 body.bb-admin-tools h2 { 222 padding-left: 47px; 223 background-image: url('images/icons32.png'); 224 background-position: 0 -621px; 225 } 226 227 body.bb-admin-settings h2 { 228 padding-left: 47px; 229 background-image: url('images/icons32.png'); 230 background-position: 0 -712px; 231 } 232 233 234 235 236 237 /* Menu */ 238 ul#bbAdminMenu * { 239 -webkit-user-select: none; 240 -moz-user-select: none; 241 -khtml-user-select: none; 242 user-select: none; 243 } 244 245 ul#bbAdminMenu { 246 float: left; 247 margin: 15px 5px 15px -165px; 248 position: relative; 249 width: 145px; 250 } 251 252 body.bb-menu-folded ul#bbAdminMenu { 253 margin-left: -50px; 254 width: auto; 255 } 256 257 ul#bbAdminMenu li.bb-menu { 258 259 } 260 261 body.bb-menu-folded ul#bbAdminMenu li.bb-menu { 262 position: relative; 263 } 264 265 ul#bbAdminMenu li.bb-menu a { 266 display: block; 267 color: rgb(0, 102, 0); 268 background: rgb(241, 241, 241) url('images/menu-bits.gif') repeat-x 0 -379px; 269 border: 1px solid rgb(227, 227, 227); 270 width: 133px; 271 padding: 5px; 272 font: normal normal normal 1em/1.4em Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; 273 text-decoration: none; 274 border-bottom-width: 0; 275 } 276 277 body.bb-menu-folded ul#bbAdminMenu li.bb-menu a { 278 height: 17px; 279 width: 17px; 280 background-image: none; 281 } 282 283 body.bb-menu-folded ul#bbAdminMenu li.bb-menu a span { 284 display: none; 285 } 286 287 ul#bbAdminMenu li.bb-menu.bb-menu-current a { 288 background-position: 0 0; 289 border-color: rgb(109, 109, 109); 290 color: rgb(255, 255, 255); 291 text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0px; 292 } 293 294 body.bb-menu-folded ul#bbAdminMenu li.bb-menu.bb-menu-current a { 295 background-color: rgb(230, 230, 230); 296 background-image: none; 297 border-color: rgb(227, 227, 227); 298 } 299 300 ul#bbAdminMenu li.bb-menu.bb-menu-current a:hover { 301 border-color: rgb(181, 181, 181); 302 color: rgb(255, 255, 255); 303 } 304 305 ul#bbAdminMenu li.bb-menu.bb-menu-first a { 306 -moz-border-radius-topleft: 6px; 307 -moz-border-radius-topright: 6px; 308 -khtml-border-top-left-radius: 6px; 309 -khtml-border-top-right-radius: 6px; 310 -webkit-border-top-left-radius: 6px; 311 -webkit-border-top-right-radius: 6px; 312 border-top-left-radius: 6px; 313 border-top-right-radius: 6px; 314 } 315 316 ul#bbAdminMenu li.bb-menu.bb-menu-last a { 317 -moz-border-radius-bottomleft: 6px; 318 -moz-border-radius-bottomright: 6px; 319 -khtml-border-bottom-left-radius: 6px; 320 -khtml-border-bottom-right-radius: 6px; 321 -webkit-border-bottom-left-radius: 6px; 322 -webkit-border-bottom-right-radius: 6px; 323 border-bottom-left-radius: 6px; 324 border-bottom-right-radius: 6px; 325 border-bottom-width: 1px; 326 } 327 328 ul#bbAdminMenu li.bb-menu.bb-menu-open.bb-menu-has-submenu a, 329 ul#bbAdminMenu li.bb-menu.bb-menu-open a { 330 -moz-border-radius-bottomleft: 0; 331 -moz-border-radius-bottomright: 0; 332 -khtml-border-bottom-left-radius: 0; 333 -khtml-border-bottom-right-radius: 0; 334 -webkit-border-bottom-left-radius: 0; 335 -webkit-border-bottom-right-radius: 0; 336 border-bottom-left-radius: 0; 337 border-bottom-right-radius: 0; 338 } 339 340 body.bb-menu-folded ul#bbAdminMenu li.bb-menu.bb-menu-last a { 341 -moz-border-radius-bottomleft: 6px; 342 -moz-border-radius-bottomright: 6px; 343 -khtml-border-bottom-left-radius: 6px; 344 -khtml-border-bottom-right-radius: 6px; 345 -webkit-border-bottom-left-radius: 6px; 346 -webkit-border-bottom-right-radius: 6px; 347 border-bottom-left-radius: 6px; 348 border-bottom-right-radius: 6px; 349 border-bottom-width: 1px; 350 } 351 352 ul#bbAdminMenu li.bb-menu.bb-menu-open a { 353 border-bottom-width: 0; 354 } 355 356 ul#bbAdminMenu li.bb-menu.bb-menu-current.bb-menu-has-submenu a:hover { 357 border-color: rgb(109, 109, 109); 358 } 359 360 body.bb-menu-folded ul#bbAdminMenu li.bb-menu.bb-menu-current.bb-menu-has-submenu a:hover { 361 border-color: rgb(227, 227, 227); 362 } 363 364 ul#bbAdminMenu li.bb-menu div.bb-menu-toggle { 365 float: right; 366 height: 27px; 367 width: 24px; 368 display: none; 369 background-image: url('images/menu-bits.gif'); 370 background-repeat: no-repeat; 371 background-position: 0 -110px; 372 margin-top: -27px; 373 } 374 375 ul#bbAdminMenu li.bb-menu.bb-menu-last div.bb-menu-toggle { 376 margin-top: -28px; 377 } 378 379 ul#bbAdminMenu li.bb-menu.bb-menu-last.bb-menu-open div.bb-menu-toggle { 380 margin-top: -27px; 381 } 382 383 ul#bbAdminMenu li.bb-menu.bb-menu-has-submenu:hover div.bb-menu-toggle, 384 ul#bbAdminMenu li.bb-menu.bb-menu-has-submenu.bb-menu-open div.bb-menu-toggle { 385 display: block; 386 } 387 388 body.bb-menu-folded ul#bbAdminMenu li.bb-menu.bb-menu-has-submenu:hover div.bb-menu-toggle, 389 body.bb-menu-folded ul#bbAdminMenu li.bb-menu.bb-menu-has-submenu.bb-menu-open div.bb-menu-toggle { 390 display: none; 391 } 392 393 ul#bbAdminMenu li.bb-menu.bb-menu-has-submenu.bb-menu-current div.bb-menu-toggle { 394 background-position: 0 -208px; 395 } 396 397 ul#bbAdminMenu li.bb-menu a:hover, 398 ul#bbAdminMenu li.bb-menu a:active, 399 ul#bbAdminMenu li.bb-menu a:focus { 400 color: rgb(213, 78, 33); 401 } 402 403 ul#bbAdminMenu li.bb-menu a div.bb-menu-icon { 404 height: 22px; 405 width: 22px; 406 float: left; 407 background: transparent url('images/menu.png') no-repeat -337px -39px; 408 } 409 410 ul#bbAdminMenu li.bb-menu.bb-menu-current a div.bb-menu-icon, 411 ul#bbAdminMenu li.bb-menu a:hover div.bb-menu-icon { 412 background-position: -337px -7px; 413 } 414 415 ul#bbAdminMenu li#bb-menu-dashboard a div.bb-menu-icon { 416 background-position: -67px -39px; 417 } 418 419 ul#bbAdminMenu li#bb-menu-dashboard.bb-menu-current a div.bb-menu-icon, 420 ul#bbAdminMenu li#bb-menu-dashboard a:hover div.bb-menu-icon { 421 background-position: -67px -7px; 422 } 423 424 ul#bbAdminMenu li#bb-menu-forums a div.bb-menu-icon { 425 background-position: -367px -39px; 426 } 427 428 ul#bbAdminMenu li#bb-menu-forums.bb-menu-current a div.bb-menu-icon, 429 ul#bbAdminMenu li#bb-menu-forums a:hover div.bb-menu-icon { 430 background-position: -367px -7px; 431 } 432 433 ul#bbAdminMenu li#bb-menu-topics a div.bb-menu-icon { 434 background-position: -397px -39px; 435 } 436 437 ul#bbAdminMenu li#bb-menu-topics.bb-menu-current a div.bb-menu-icon, 438 ul#bbAdminMenu li#bb-menu-topics a:hover div.bb-menu-icon { 439 background-position: -397px -7px; 440 } 441 442 ul#bbAdminMenu li#bb-menu-posts a div.bb-menu-icon { 443 background-position: -427px -39px; 444 } 445 446 ul#bbAdminMenu li#bb-menu-posts.bb-menu-current a div.bb-menu-icon, 447 ul#bbAdminMenu li#bb-menu-posts a:hover div.bb-menu-icon { 448 background-position: -427px -7px; 449 } 450 451 ul#bbAdminMenu li#bb-menu-appearance a div.bb-menu-icon { 452 background-position: -6px -39px; 453 } 454 455 ul#bbAdminMenu li#bb-menu-appearance.bb-menu-current a div.bb-menu-icon, 456 ul#bbAdminMenu li#bb-menu-appearance a:hover div.bb-menu-icon { 457 background-position: -6px -7px; 458 } 459 460 ul#bbAdminMenu li#bb-menu-plugins a div.bb-menu-icon { 461 background-position: -186px -39px; 462 } 463 464 ul#bbAdminMenu li#bb-menu-plugins.bb-menu-current a div.bb-menu-icon, 465 ul#bbAdminMenu li#bb-menu-plugins a:hover div.bb-menu-icon { 466 background-position: -186px -7px; 467 } 468 469 ul#bbAdminMenu li#bb-menu-users a div.bb-menu-icon { 470 background-position: -308px -39px; 471 } 472 473 ul#bbAdminMenu li#bb-menu-users.bb-menu-current a div.bb-menu-icon, 474 ul#bbAdminMenu li#bb-menu-users a:hover div.bb-menu-icon { 475 background-position: -308px -7px; 476 } 477 478 ul#bbAdminMenu li#bb-menu-tools a div.bb-menu-icon { 479 background-position: -217px -39px; 480 } 481 482 ul#bbAdminMenu li#bb-menu-tools.bb-menu-current a div.bb-menu-icon, 483 ul#bbAdminMenu li#bb-menu-tools a:hover div.bb-menu-icon { 484 background-position: -217px -7px; 485 } 486 487 ul#bbAdminMenu li#bb-menu-settings a div.bb-menu-icon { 488 background-position: -246px -39px; 489 } 490 491 ul#bbAdminMenu li#bb-menu-settings.bb-menu-current a div.bb-menu-icon, 492 ul#bbAdminMenu li#bb-menu-settings a:hover div.bb-menu-icon { 493 background-position: -246px -7px; 494 } 495 496 ul#bbAdminMenu li.bb-menu.bb-menu-separator { 497 498 } 499 500 ul#bbAdminMenu li.bb-menu.bb-menu-separator a { 501 background: transparent url('images/menu-arrows.gif') no-repeat 0 5px; 502 border-width: 0; 503 padding: 0; 504 height: 21px; 505 cursor: w-resize; 506 width: 145px; 507 } 508 509 body.bb-menu-folded ul#bbAdminMenu li.bb-menu.bb-menu-separator a { 510 background: transparent url('images/menu-arrows.gif') no-repeat -171px -34px; 511 height: 21px; 512 cursor: e-resize; 513 width: 29px; 514 } 515 516 ul#bbAdminMenu li.bb-menu div.bb-menu-sub-wrap { 517 display: none; 518 border: 1px solid rgb(227, 227, 227); 519 border-bottom-width: 0; 520 border-left-width: 0; 521 } 522 523 body.bb-menu-folded ul#bbAdminMenu li.bb-menu div.bb-menu-sub-wrap { 524 display: none; 525 position: absolute; 526 left: 36px; 527 top: 0; 528 width: 145px; 529 z-index: 1000; 530 } 531 532 ul#bbAdminMenu li.bb-menu.bb-menu-current div.bb-menu-sub-wrap { 533 border-color: rgb(170, 170, 170); 534 border-bottom-width: 1px; 535 } 536 537 body.bb-menu-folded ul#bbAdminMenu li.bb-menu div.bb-menu-sub-wrap { 538 border-width: 0; 539 border-color: rgb(227, 227, 227); 540 border-style: solid; 541 border-bottom-width: 1px; 542 } 543 544 body.bb-menu-folded ul#bbAdminMenu li.bb-menu.bb-menu-current div.bb-menu-sub-wrap { 545 border-color: rgb(170, 170, 170); 546 } 547 548 ul#bbAdminMenu li.bb-menu.bb-menu-open div.bb-menu-sub-wrap { 549 display: block; 550 } 551 552 ul#bbAdminMenu li.bb-menu.bb-menu-last div.bb-menu-sub-wrap { 553 border-bottom-width: 1px; 554 } 555 556 body.bb-menu-folded ul#bbAdminMenu li.bb-menu div.bb-menu-sub-wrap.bb-menu-sub-open { 557 display: block; 558 border-bottom-width: 1px; 559 } 560 561 ul#bbAdminMenu li.bb-menu div.bb-menu-sub-wrap span { 562 display: none; 563 font: normal normal normal 1em/1.45em Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; 564 background-color: rgb(241, 241, 241); 565 border: 1px solid rgb(227, 227, 227); 566 -moz-border-radius-topleft: 6px; 567 -moz-border-radius-topright: 6px; 568 -khtml-border-top-left-radius: 6px; 569 -khtml-border-top-right-radius: 6px; 570 -webkit-border-top-left-radius: 6px; 571 -webkit-border-top-right-radius: 6px; 572 border-top-left-radius: 6px; 573 border-top-right-radius: 6px; 574 padding: 5px 5px 4px 10px; 575 cursor: default; 576 } 577 578 ul#bbAdminMenu li.bb-menu.bb-menu-current div.bb-menu-sub-wrap span { 579 background-color: rgb(234, 234, 234); 580 border-color: rgb(170, 170, 170); 581 } 582 583 body.bb-menu-folded ul#bbAdminMenu li.bb-menu div.bb-menu-sub-wrap span { 584 display: block; 585 } 586 587 ul#bbAdminMenu li.bb-menu li.bb-menu-sub a { 588 width: 127px !important; 589 -moz-border-radius: 0 !important; 590 -khtml-border-radius: 0 !important; 591 -webkit-border-radius: 0 !important; 592 border-radius: 0 !important; 593 border-width: 0 !important; 594 font: normal normal normal 0.85em/1.7em 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif; 595 padding: 1px 5px 3px 12px; 596 color: rgb(0, 102, 0); 597 text-shadow: none; 598 background: rgb(255, 255, 255) url('images/menu-bits.gif') no-repeat 0 -306px; 599 } 600 601 body.bb-menu-folded ul#bbAdminMenu li.bb-menu li.bb-menu-sub a { 602 height: auto; 603 background: rgb(255, 255, 255) url('images/menu-bits.gif') no-repeat 0 -306px; 604 border-right-width: 1px !important; 605 } 606 607 ul#bbAdminMenu li.bb-menu li.bb-menu-sub a:hover { 608 background-color: rgb(222, 236, 225) !important; 609 color: rgb(51, 51, 51); 610 } 611 612 ul#bbAdminMenu li.bb-menu.bb-menu-current li.bb-menu-sub a { 613 background-image: url('images/menu-dark.gif'); 614 background-position: 0 -20px !important; 615 } 616 617 body.bb-menu-folded ul#bbAdminMenu li.bb-menu.bb-menu-current li.bb-menu-sub a { 618 background-image: url('images/menu-dark.gif'); 619 background-position: 0 -20px !important; 620 border-color: rgb(170, 170, 170) !important; 621 } 622 623 ul#bbAdminMenu li.bb-menu.bb-menu-current li.bb-menu-sub.bb-menu-sub-current a { 624 color: rgb(51, 51, 51); 625 font-weight: bold; 626 background-color: rgb(245, 245, 245) !important; 627 background-position: 0 0 !important; 628 } 629 630 body.bb-menu-folded ul#bbAdminMenu li.bb-menu.bb-menu-current li.bb-menu-sub.bb-menu-sub-current a { 631 background-position: 0 0 !important; 632 } 633 634 ul#bbAdminMenu li.bb-menu.bb-menu-open li.bb-menu-sub a { 635 background-position: 0 -306px; 636 } 637 638 div.wrap { 639 float: left; 640 width: 100%; 641 } 642 643 div#message { 644 -moz-border-radius: 3px; 645 -khtml-border-radius: 3px; 646 -webkit-border-radius: 3px; 647 border-radius: 3px; 648 border-style: solid; 649 border-width: 1px; 650 margin: 5px 0 2px 0; 651 padding: 0 0.65em; 652 font-size: 0.9em; 653 } 654 655 div#message.updated { 656 background-color: rgb(255, 251, 204); 657 border-color: rgb(230, 219, 85); 658 } 659 660 div#message.error { 661 background-color: rgb(255, 235, 232); 662 border-color: rgb(204, 0, 0); 663 } 664 665 div#message p { 666 line-height: 1; 667 margin: 0.6em 0; 668 padding: 2px; 669 } 670 671 div#message p strong { 672 font-weight: bold; 673 } 674 675 div#message a { 676 color: rgb(0, 102, 0); 677 text-decoration: none; 678 } 679 680 div#message a:hover { 681 color: rgb(213, 78, 33); 682 } 683 684 div.plugin-error { 685 background-color: rgb(255, 235, 232); 686 border-color: rgb(204, 0, 0); 687 -moz-border-radius: 3px; 688 -khtml-border-radius: 3px; 689 -webkit-border-radius: 3px; 690 border-radius: 3px; 691 border-style: solid; 692 border-width: 1px; 693 margin: 5px 0 2px 0; 694 padding: 0; 695 height: 160px; 696 } 697 698 div.plugin-error iframe { 699 -moz-border-radius: 3px; 700 -khtml-border-radius: 3px; 701 -webkit-border-radius: 3px; 702 border-radius: 3px; 703 display: block; 704 width: 100%; 705 height: 100%; 706 margin: 0; 707 padding: 0; 708 border-width: 0; 709 } 710 711 712 /* Dashboard */ 713 714 div.dashboard { 715 background-color: rgb(255, 255, 255); 716 border: 1px solid rgb(223, 223, 223); 717 -moz-border-radius: 6px; 718 -khtml-border-radius: 6px; 719 -webkit-border-radius: 6px; 720 border-radius: 6px; 721 margin: 10px 5px 20px 5px; 722 } 723 724 div.dashboard a { 725 color: rgb(0, 102, 0); 726 } 727 728 div.dashboard a:hover { 729 color: rgb(213, 78, 33); 730 } 731 732 div.dashboard h3 { 733 -moz-border-radius-topleft: 6px; 734 -moz-border-radius-topright: 6px; 735 -khtml-border-top-left-radius: 6px; 736 -khtml-border-top-right-radius: 6px; 737 -webkit-border-top-left-radius: 6px; 738 -webkit-border-top-right-radius: 6px; 739 border-top-left-radius: 6px; 740 border-top-right-radius: 6px; 741 background: url('images/gray-grad.png') repeat-x rgb(223, 223, 223); 742 text-shadow: rgb(255, 255, 255) 0px 1px 0px; 743 color: rgb(70, 70, 70); 744 font-size: 0.9em; 745 font-weight: bold; 746 line-height: 1; 747 margin: 0px; 748 padding: 7px 9px; 749 } 750 751 div.dashboard div.table { 752 border-bottom: 1px solid rgb(236, 236, 236); 753 background: rgb(249, 249, 249); 754 } 755 756 div.dashboard div.table table { 757 width: 100%; 758 } 759 760 div.dashboard div.table thead th { 761 color: rgb(119, 119, 119); 762 font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; 763 font-size: 1em; 764 font-style: italic; 765 padding: 3px 8px 4px; 766 background: rgb(255, 255, 255); 767 width: 50%; 768 } 769 770 div.dashboard div.table tbody td { 771 border-top: 1px solid rgb(236, 236, 236); 772 padding: 4px 16px; 773 white-space: nowrap; 774 font-size: 0.9em; 775 color: rgb(70, 70, 70); 776 } 777 778 div.dashboard div.table tbody td span { 779 font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; 780 font-size: 1.6em; 781 padding-right: 6px; 782 } 783 784 div.dashboard p { 785 color: rgb(51, 51, 51); 786 font-size: 0.85em; 787 margin: 8px; 788 } 789 790 div.dashboard div.versions p span.b { 791 font-weight: bold; 792 } 793 794 div.dashboard div.versions p a { 795 text-decoration: none; 796 font-weight: bold; 797 } 798 799 div.dashboard div.versions p.theme a.button { 800 display: block; 801 float: right; 802 font-weight: normal; 803 -moz-border-radius: 10px; 804 -khtml-border-radius: 10px; 805 -webkit-border-radius: 10px; 806 border-radius: 10px; 807 padding: 4px 10px; 808 background: url('images/white-grad.png') repeat-x scroll rgb(242, 242, 242); 809 border: 1px solid rgb(187, 187, 187); 810 color: rgb(70, 70, 70); 811 cursor: pointer; 812 font-size: 1em; 813 line-height: 1.2em; 814 } 815 816 div.dashboard div.versions p.theme a.button:hover { 817 border-color: rgb(102, 102, 102); 818 color: rgb(0, 0, 0); 819 } 820 821 div.dashboard div.versions p.theme a.button:active { 822 background: url('images/white-grad-active.png') repeat-x scroll rgb(238, 238, 238); 823 } 824 825 div.dashboard ul li { 826 color: rgb(51, 51, 51); 827 font-size: 0.85em; 828 margin: 8px; 829 } 830 831 div.dashboard ul li a { 832 text-decoration: none; 833 font-weight: bold; 834 } 835 836 837 838 /* Search forms */ 839 840 form.search-form fieldset, form.bulk-form fieldset { 841 margin: 10px 0 0 0; 842 clear: left; 843 float: left; 844 } 845 846 form.search-form fieldset div { 847 float: left; 848 margin-right: 5px; 849 margin-top: 3px; 850 } 851 852 form.search-form fieldset div div { 853 float: none; 854 margin: 0; 855 } 856 857 form.search-form fieldset div label { 858 display: block; 859 line-height: 1; 860 padding: 0 0 3px 0; 861 font-size: 0.8em; 862 color: rgb(70, 70, 70); 863 } 864 865 form.search-form fieldset div div input.text-input { 866 width: 100px; 867 padding: 3px; 868 -moz-border-radius: 4px; 869 -khtml-border-radius: 4px; 870 -webkit-border-radius: 4px; 871 border-radius: 4px; 872 border: 1px solid rgb(223, 223, 223); 873 font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif; 874 font-size: 0.85em; 875 line-height: 1.3em; 876 } 877 878 form.search-form fieldset div div input.checkbox-input { 879 margin: 4px; 880 } 881 882 form.search-form select, form.bulk-form select { 883 height: 2.1em; 884 margin: 0; 885 padding: 3px; 886 -moz-border-radius: 4px; 887 -khtml-border-radius: 4px; 888 -webkit-border-radius: 4px; 889 border-radius: 4px; 890 border: 1px solid rgb(223, 223, 223); 891 font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif; 892 font-size: 0.85em; 893 } 894 895 form.search-form fieldset div div option { 896 padding: 3px; 897 font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif; 898 font-size: 0.9em; 899 } 900 901 form.search-form div.submit label { 902 width: 0; 903 overflow: hidden; 904 } 905 906 form.search-form div.submit input.button, form.bulk-form input.button { 907 font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif; 908 -moz-border-radius: 10px; 909 -khtml-border-radius: 10px; 910 -webkit-border-radius: 10px; 911 border-radius: 10px; 912 padding: 4px 9px 5px; 913 background: url('images/white-grad.png') repeat-x scroll rgb(242, 242, 242); 914 border: 1px solid rgb(187, 187, 187); 915 color: rgb(70, 70, 70); 916 cursor: pointer; 917 line-height: 1.1em; 918 font-size: 0.85em; 919 } 920 921 form.search-form div.submit input.button:hover, form.bulk-form input.button:hover { 922 border-color: rgb(102, 102, 102); 923 color: rgb(0, 0, 0); 924 } 925 926 form.search-form div.submit input.button:active, form.bulk-form input.button:active { 927 background: url('images/white-grad-active.png') repeat-x scroll rgb(238, 238, 238); 928 } 929 930 931 932 /* Table nav */ 933 934 div.tablenav { 935 margin-top: -1em; 936 float: right; 937 } 938 939 div.bottom { 940 margin-top: 0; 941 } 942 943 div.tablenav a { 944 color: rgb(0, 102, 0); 945 } 946 947 div.tablenav a:hover { 948 color: rgb(213, 78, 33); 949 } 950 951 div.tablenav-pages { 952 margin: 13px 0 0 0; 953 } 954 955 div.tablenav.bottom div.tablenav-pages { 956 margin: 0 0 16px 0; 957 } 958 959 span.displaying-num { 960 display: block; 961 text-align: right; 962 line-height: 1; 963 font-size: 0.8em; 964 color: rgb(70, 70, 70); 965 padding: 0 0 3px 0; 966 } 967 968 span.displaying-pages { 969 display: block; 970 float: right; 971 cursor: default; 972 color: rgb(85, 85, 85); 973 } 974 975 span.displaying-pages span, 976 span.displaying-pages a { 977 display: block; 978 float: left; 979 -moz-border-radius: 5px; 980 -khtml-border-radius: 5px; 981 -webkit-border-radius: 5px; 982 border-radius: 5px; 983 border: 1px solid rgb(211, 211, 211); 984 padding: 3px 7px; 985 text-decoration: none; 986 background-color: rgb(223, 223, 223); 987 font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif; 988 font-size: 0.85em; 989 line-height: 1.3em; 990 margin-left: 3px; 991 } 992 993 span.displaying-pages span.dots { 994 border-width: 0; 995 background-color: transparent; 996 padding: 4px 0 0 0; 997 font-weight: bold; 998 } 999 1000 span.displaying-pages a { 1001 font-weight: bold; 1002 background: url('images/menu-bits.gif') repeat-x 0 -379px rgb(238, 238, 238); 1003 border-color: rgb(227, 227, 227); 1004 } 1005 1006 span.displaying-pages a:hover { 1007 border-color: rgb(213, 78, 33); 1008 } 1009 1010 span.displaying-pages a:active { 1011 color: rgb(255, 255, 255); 1012 } 1013 1014 div.table-filter { 1015 color: rgb(102, 102, 102); 1016 margin: 8px 0px 5px; 1017 font-size: 0.85em; 1018 } 1019 1020 div.table-filter a { 1021 color: rgb(0, 102, 0); 1022 text-decoration: none; 1023 } 1024 1025 div.table-filter a.current { 1026 color: rgb(0, 0, 0); 1027 font-weight: bold; 1028 } 1029 1030 div.table-filter a:hover { 1031 color: rgb(213, 78, 33); 1032 } 1033 1034 div.table-filter a span.count { 1035 color: rgb(153, 153, 153); 1036 font-weight: normal; 1037 } 1038 1039 1040 1041 1042 /* Tabled info */ 1043 1044 p.no-results { 1045 margin: 10px 0; 1046 font-size: 0.85em; 1047 } 1048 1049 table.widefat { 1050 width: 100%; 1051 border: 1px solid rgb(223, 223, 223); 1052 -moz-border-radius: 4px; 1053 -khtml-border-radius: 4px; 1054 -webkit-border-radius: 4px; 1055 border-radius: 4px; 1056 border-collapse: separate; 1057 margin: 10px 0; 1058 } 1059 1060 table.widefat a { 1061 color: rgb(0, 102, 0); 1062 text-decoration: none; 1063 } 1064 1065 table.widefat a:hover { 1066 color: rgb(213, 78, 33); 1067 } 1068 1069 table.widefat tr td { 1070 width: 18%; 1071 vertical-align: top; 1072 padding: 3px 7px; 1073 font-size: 0.85em; 1074 border-bottom: 1px solid rgb(223, 223, 223); 1075 } 1076 1077 table.widefat tr.alt td { 1078 background-color: rgb(255, 255, 255); 1079 } 1080 1081 table.widefat tr.deleted td { 1082 background-color: rgb(245, 224, 224); 1083 } 1084 1085 table.widefat tr.deleted.alt td { 1086 background-color: rgb(248, 233, 233); 1087 } 1088 1089 table.widefat tr.spam td { 1090 background-color: rgb(238, 218, 204); 1091 } 1092 1093 table.widefat tr.spam.alt td { 1094 background-color: rgb(243, 228, 218); 1095 } 1096 1097 table#plugins-list.widefat tr.inactive td { 1098 background-color: rgb(238, 238, 238); 1099 } 1100 1101 table#plugins-list.widefat tr.active td { 1102 background-color: rgb(255, 255, 255); 1103 } 1104 1105 table#plugins-list.widefat tr.autoload td { 1106 background-color: rgb(249, 249, 249); 1107 } 1108 1109 table#plugins-list.widefat tr.autoload td.plugin-name { 1110 background-image: url('images/input-lock.png'); 1111 background-repeat: no-repeat; 1112 background-position: 100% 0; 1113 padding-right: 20px; 1114 } 1115 1116 table.widefat tr th { 1117 background: url('images/gray-grad.png') repeat-x rgb(223, 223, 223); 1118 text-shadow: rgb(255, 255, 255) 0px 1px 0px; 1119 color: rgb(51, 51, 51); 1120 font-weight: bold; 1121 vertical-align: top; 1122 padding: 7px 7px 8px; 1123 font-size: 0.85em; 1124 line-height: 1.3em; 1125 border-bottom: 1px solid rgb(223, 223, 223); 1126 } 1127 1128 table.widefat tfoot tr th { 1129 border-bottom-width: 0; 1130 } 1131 1132 table.widefat .check-column { 1133 width: 2.2em; 1134 padding-right: 0; 1135 } 1136 1137 table#posts-list.widefat tr td.post { 1138 width: 46%; 1139 font-size: 0.9em; 1140 } 1141 1142 table#topics-list.widefat tr td.topic { 1143 width: 28%; 1144 font-size: 0.9em; 1145 } 1146 1147 table#plugins-list.widefat tr td.plugin-name { 1148 width: 25%; 1149 font-size: 0.9em; 1150 } 1151 1152 table#plugins-list.widefat tr td.plugin-description { 1153 width: 75%; 1154 } 1155 1156 table.widefat tr td.author img.avatar { 1157 vertical-align: top; 1158 border: 1px solid rgb(223, 223, 223); 1159 } 1160 1161 table.widefat tr td.post p { 1162 margin-bottom: 0.4em; 1163 } 1164 1165 table.widefat tr td.plugin-description p { 1166 margin-bottom: 0.8em; 1167 } 1168 1169 table.widefat tr td.plugin-description p.meta { 1170 margin-bottom: 0; 1171 } 1172 1173 table.widefat tr td.topic span.row-title, 1174 table.widefat tr td.user span.row-title { 1175 margin-bottom: 0.4em; 1176 display: block; 1177 font-weight: bold; 1178 } 1179 1180 table.widefat tr td.user img.avatar { 1181 display: block; 1182 float: left; 1183 margin: 3px 8px 3px -1px; 1184 border: 1px solid rgb(223, 223, 223); 1185 } 1186 1187 table.widefat tr td.plugin-name span.row-title { 1188 margin-bottom: 0.8em; 1189 display: block; 1190 font-weight: bold; 1191 } 1192 1193 table.widefat tr td.post div, 1194 table.widefat tr td.topic div, 1195 table.widefat tr td.plugin-name div { 1196 font-size: 0.85em; 1197 } 1198 1199 table.widefat tr span.row-actions { 1200 display: none; 1201 } 1202 1203 table#plugins-list.widefat tr span.row-actions { 1204 display: inline; 1205 } 1206 1207 table.widefat tr:hover span.row-actions { 1208 display: inline; 1209 } 1210 1211 table.widefat tr span.row-actions span.note { 1212 color: rgb(102, 102, 102); 1213 } 1214 1215 table.widefat tr a.post-undelete-link { 1216 display: none; 1217 } 1218 1219 table.widefat tr.deleted a.post-undelete-link { 1220 display: inline; 1221 } 1222 1223 table.widefat tr.deleted a.post-delete-link { 1224 display: none; 1225 } 1226 1227 table.widefat tr td em { 1228 font-style: italic; 1229 } 1230 1231 table.widefat tr td strong { 1232 font-weight: bold; 1233 } 1234 1235 table.widefat tr td code, 1236 table.widefat tr td kbd { 1237 font-family: Consolas, Monaco, Courier, monospace; 1238 font-size: 1.2em; 1239 line-height: 1.4; 1240 background: rgb(234, 234, 234); 1241 margin: 0px 1px; 1242 padding: 1px 3px; 1243 color: rgb(51, 51, 51); 1244 } 1245 1246 1247 1248 /* Forums */ 1249 1250 body.sorting { 1251 overflow-x: hidden; 1252 } 1253 1254 ul#forum-list { 1255 xwidth: 100%; 1256 border: 1px solid rgb(223, 223, 223); 1257 -moz-border-radius: 4px; 1258 -khtml-border-radius: 4px; 1259 -webkit-border-radius: 4px; 1260 border-radius: 4px; 1261 margin: 10px 0; 1262 } 1263 1264 ul#forum-list a { 1265 color: rgb(0, 102, 0); 1266 text-decoration: none; 1267 } 1268 1269 ul#forum-list a:hover { 1270 color: rgb(213, 78, 33); 1271 } 1272 1273 ul#forum-list li { 1274 border-top: 1px solid rgb(223, 223, 223); 1275 background-color: rgb(249, 249, 249); 1276 } 1277 1278 ul#forum-list li.alt { 1279 background-color: rgb(255, 255, 255); 1280 } 1281 1282 ul#forum-list li ul li { 1283 border-left: 1px dashed rgb(223, 223, 223); 1284 } 1285 1286 ul#forum-list li ul.list-block { 1287 padding: 0 0 0 30px; 1288 } 1289 1290 ul#forum-list li.list-block { 1291 padding: 3px 0 0 0; 1292 } 1293 1294 ul#forum-list li div.list-block { 1295 padding: 0 7px 3px 7px; 1296 } 1297 1298 ul#forum-list li.thead { 1299 background: url('images/gray-grad.png') repeat-x rgb(223, 223, 223); 1300 text-shadow: rgb(255, 255, 255) 0px 1px 0px; 1301 color: rgb(51, 51, 51); 1302 font-weight: bold; 1303 vertical-align: top; 1304 padding: 7px 7px 8px; 1305 font-size: 0.85em; 1306 line-height: 1.3em; 1307 border-top-width: 0; 1308 } 1309 1310 ul#forum-list li img.sort-handle { 1311 float: left; 1312 margin: 0 3px 0 -4px; 1313 cursor: move; 1314 } 1315 1316 ul#forum-list li div.row-title { 1317 font-size: 0.9em; 1318 font-weight: bold; 1319 } 1320 1321 ul#forum-list li p.row-description { 1322 font-size: 0.85em; 1323 } 1324 1325 ul#forum-list li div.list-block div.row-actions { 1326 font-size: 0.8em; 1327 margin-top: 0.4em; 1328 } 1329 1330 ul#forum-list li div.list-block div.row-actions span { 1331 display: none; 1332 } 1333 1334 ul#forum-list li div.list-block:hover div.row-actions span { 1335 display: inline; 1336 } 1337 1338 ul#forum-list.sorting li div.list-block div.row-actions span { 1339 display: none; 1340 } 1341 1342 ul#forum-list.sorting li div.list-block div.row-actions span { 1343 display: none; 1344 } 1345 1346 .helper { 1347 background-color: rgb(200, 250, 200); 1348 outline: 1px dashed #777; 1349 width: 100% !important; 1350 padding: 3px 0; 1351 } 1352 1353 #dragHelper { 1354 xwidth: auto !important; 1355 padding: 3px; 1356 } 1357 1358 #dragHelper img.sort-handle { 1359 float: left; 1360 margin: 0 3px 0 0; 1361 } 1362 1363 #dragHelper div.row-description { 1364 margin: 0 0 0 4px; 1365 } 1366 1367 #dragHelper div.row-actions span { 1368 display: none; 1369 } 1370 1371 1372 1373 /* Themes */ 1374 1375 h3.themes { 1376 display: block; 1377 color: rgb(51, 51, 51); 1378 font-size: 1.17em; 1379 font-weight: bold; 1380 padding: 0 0 1em 0; 1381 margin-top: 10px; 1382 } 1383 1384 table.theme-list-active, 1385 table.theme-list { 1386 margin: 0 auto 40px; 1387 width: 100%; 1388 border-collapse: collapse; 1389 } 1390 1391 table.theme-list { 1392 margin-bottom: 20px; 1393 width: 100%; 1394 border-top: 1px solid rgb(221, 221, 221); 1395 border-bottom: 1px solid rgb(221, 221, 221); 1396 border-collapse: collapse; 1397 } 1398 1399 table.theme-list td { 1400 width: 240px; 1401 padding: 20px; 1402 border-bottom: 1px solid rgb(221, 221, 221); 1403 border-right: 1px solid rgb(221, 221, 221); 1404 vertical-align: top; 1405 } 1406 1407 table.theme-list td.position-3 { 1408 border-right: none; 1409 } 1410 1411 table.theme-list td h3.themes, 1412 table.theme-list-active td h3.themes { 1413 margin-top: 0; 1414 font-size: 1em; 1415 } 1416 1417 table.theme-list td div.screen-shot { 1418 border: 1px solid rgb(204, 204, 204); 1419 width: 240px; 1420 height: 180px; 1421 margin-bottom: 10px; 1422 -moz-border-radius: 4px; 1423 -khtml-border-radius: 4px; 1424 -webkit-border-radius: 4px; 1425 border-radius: 4px; 1426 } 1427 1428 table.theme-list td div.screen-shot img { 1429 width: 240px; 1430 height: 180px; 1431 -moz-border-radius: 4px; 1432 -khtml-border-radius: 4px; 1433 -webkit-border-radius: 4px; 1434 border-radius: 4px; 1435 } 1436 1437 table.theme-list-active td div.screen-shot { 1438 border: 1px solid rgb(153, 153, 153); 1439 width: 150px; 1440 height: 112px; 1441 float: left; 1442 margin-right: 15px; 1443 -moz-border-radius: 4px; 1444 -khtml-border-radius: 4px; 1445 -webkit-border-radius: 4px; 1446 border-radius: 4px; 1447 } 1448 1449 table.theme-list-active td div.screen-shot img { 1450 width: 150px; 1451 height: 112px; 1452 -moz-border-radius: 4px; 1453 -khtml-border-radius: 4px; 1454 -webkit-border-radius: 4px; 1455 border-radius: 4px; 1456 } 1457 1458 table.theme-list td div.description p, 1459 table.theme-list-active td div.description p { 1460 color: rgb(102, 102, 102); 1461 font-style: italic; 1462 margin: 0 0 1em 0; 1463 font-size: 0.9em; 1464 } 1465 1466 table.theme-list td div.description div.actions { 1467 margin: 0 0 1em 0; 1468 font-size: 1em; 1469 } 1470 1471 table.theme-list td div.description p.location, 1472 table.theme-list-active td div.description p.location { 1473 color: inherit; 1474 font-style: normal; 1475 margin: 0 0 0 0; 1476 } 1477 1478 table.theme-list td a, 1479 table.theme-list-active td a { 1480 color: rgb(0, 102, 0); 1481 } 1482 1483 table.theme-list td a:hover, 1484 table.theme-list-active td a:hover { 1485 color: rgb(213, 78, 33); 1486 } 1487 1488 1489 /* Users */ 1490 1491 .bb-admin-user-manage form { 1492 width: 550px; 1493 } 1494 1495 #option-pass-strength-fake-input { 1496 clear: none; 1497 width: 200px; 1498 } 1499 .bb-admin-user-manage #pass-strength-result { 1500 clear: left; 1501 float: left; 1502 margin-top: -25px; 1503 } 1504 1505 #pass-strength-result { 1506 padding: 2px; 1507 text-align: center; 1508 width: 280px; 1509 border: 1px solid #ccc; 1510 background-color: #e3e3e3; 1511 -moz-border-radius: 3px; 1512 -khtml-border-radius: 3px; 1513 -webkit-border-radius: 3px; 1514 border-radius: 3px; 1515 } 1516 1517 #pass-strength-result.bad { 1518 background-color: #ffeff7; 1519 border-color: #c69; 1520 } 1521 1522 #pass-strength-result.good { 1523 background-color: #effff4; 1524 border-color: #66cc87; 1525 } 1526 1527 #pass-strength-result.short { 1528 background-color: #e3e3e3; 1529 } 1530 1531 #pass-strength-result.strong { 1532 background-color: #59ef86; 1533 border-color: #319f52; 1534 } 1535 1536 1537 /* Options */ 1538 1539 form.settings fieldset { 1540 margin-top: 10px; 1541 margin-bottom: 20px; 1542 } 1543 1544 form.settings legend, 1545 div.settings h3 { 1546 display: block; 1547 color: rgb(51, 51, 51); 1548 font-size: 1.17em; 1549 font-weight: bold; 1550 padding: 0 0 1em 0; 1551 } 1552 1553 div.settings { 1554 margin-bottom: 20px; 1555 } 1556 1557 hr.settings { 1558 height: 1px; 1559 background-color: rgb(221, 221, 221); 1560 border-width: 0; 1561 margin-bottom: 20px; 1562 } 1563 1564 form.settings p, 1565 div.settings p { 1566 float: none; 1567 display: block; 1568 color: rgb(51, 51, 51); 1569 font-size: 0.9em; 1570 margin: 0 0 1em 0; 1571 } 1572 1573 form.settings ul, 1574 div.settings ul { 1575 float: none; 1576 display: block; 1577 color: rgb(51, 51, 51); 1578 font-size: 0.9em; 1579 margin: 0 4em 1em 4em; 1580 } 1581 1582 form.settings ul li, 1583 div.settings ul li { 1584 list-style: disc outside none; 1585 } 1586 1587 form.settings strong, 1588 div.settings strong { 1589 font-weight: bold; 1590 } 1591 1592 form.settings em, 1593 div.settings em { 1594 font-style: italic; 1595 } 1596 1597 form.settings code, 1598 form.settings kbd { 1599 font-family: Consolas, Monaco, Courier, monospace; 1600 font-size: 1.2em; 1601 background: rgb(234, 234, 234); 1602 margin: 0px 1px; 1603 padding: 1px 3px; 1604 color: rgb(51, 51, 51); 1605 } 1606 1607 form.settings a { 1608 color: rgb(0, 102, 0); 1609 } 1610 1611 form.settings a:hover { 1612 color: rgb(213, 78, 33); 1613 } 1614 1615 form.settings div { 1616 clear: both; 1617 padding: 10px; 1618 margin-right: 10px; 1619 } 1620 1621 form.settings div label { 1622 float: left; 1623 display: block; 1624 padding: 3px; 1625 width: 200px; 1626 color: rgb(34, 34, 34); 1627 text-shadow: rgb(255, 255, 255) 0px 1px 0px; 1628 } 1629 1630 form.settings div div.label { 1631 float: left; 1632 display: block; 1633 padding: 3px; 1634 width: 190px; 1635 color: rgb(34, 34, 34); 1636 text-shadow: rgb(255, 255, 255) 0px 1px 0px; 1637 } 1638 1639 form.settings div.disabled label, 1640 form.settings div.disabled div.label { 1641 background-image: url('images/input-lock.png'); 1642 background-repeat: no-repeat; 1643 background-position: 100% 0; 1644 padding-right: 20px; 1645 width: 180px; 1646 } 1647 1648 form.settings div.disabled div.label { 1649 width: 170px; 1650 } 1651 1652 form.settings div div.inputs { 1653 clear: none; 1654 padding: 0; 1655 margin: 0 0 0 210px; 1656 } 1657 1658 form.settings div div.inputs label { 1659 float: none; 1660 clear: none; 1661 display: block; 1662 padding: 0; 1663 margin: 3px 0 6px 0; 1664 width: auto; 1665 color: rgb(51, 51, 51); 1666 text-shadow: none; 1667 font-size: 0.85em; 1668 } 1669 1670 form.settings div.disabled div.inputs label { 1671 background-image: none; 1672 } 1673 1674 form.settings div div.inputs label.radios img { 1675 margin: -2px 0 0 0; 1676 vertical-align: middle; 1677 border: 1px solid rgb(223, 223, 223); 1678 } 1679 1680 form.settings input.text, 1681 form.settings textarea { 1682 width: 300px; 1683 padding: 3px; 1684 -moz-border-radius: 4px; 1685 -khtml-border-radius: 4px; 1686 -webkit-border-radius: 4px; 1687 border-radius: 4px; 1688 border: 1px solid rgb(223, 223, 223); 1689 font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif; 1690 font-size: 1em; 1691 } 1692 1693 form.settings div.disabled input.text, 1694 form.settings div.disabled textarea { 1695 background-color: rgb(221, 221, 221); 1696 } 1697 1698 form.settings div input.text.short { 1699 width: 100px; 1700 } 1701 1702 form.settings div input.text.code { 1703 font-family: Consolas, Monaco, Courier, monospace; 1704 font-size: 1.2em; 1705 } 1706 1707 form.settings input.readonly, 1708 form.settings textarea.readonly { 1709 background-color: rgb(221, 221, 221); 1710 } 1711 1712 form.settings div.table { 1713 margin: 0 0 0 220px; 1714 padding: 3px; 1715 -moz-border-radius: 4px; 1716 -khtml-border-radius: 4px; 1717 -webkit-border-radius: 4px; 1718 border-radius: 4px; 1719 border: 1px solid rgb(223, 223, 223); 1720 background-color: rgb(221, 221, 221); 1721 width: 400px; 1722 } 1723 1724 form.settings div.table table { 1725 width: 100%; 1726 font-family: Consolas, Monaco, Courier, monospace; 1727 font-size: 1.2em; 1728 border-collapse: collapse; 1729 } 1730 1731 form.settings div.table table th { 1732 border-bottom: 1px dotted rgb(70, 70, 70); 1733 padding: 6px; 1734 } 1735 1736 form.settings div.table table td { 1737 padding: 6px; 1738 } 1739 1740 form.settings div span.after { 1741 font-size: 0.85em; 1742 } 1743 1744 form.settings div p { 1745 color: rgb(102, 102, 102); 1746 font-style: italic; 1747 margin: 0 0 0 3em; 1748 padding: 0.3em; 1749 border-left: 1px solid rgb(223, 223, 223); 1750 } 1751 1752 form.settings input.submit { 1753 font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif; 1754 -moz-border-radius: 11px; 1755 -khtml-border-radius: 11px; 1756 -webkit-border-radius: 11px; 1757 border-radius: 11px; 1758 border: 1px solid rgb(63, 163, 50); 1759 cursor: pointer; 1760 font-size: 11px; 1761 line-height: 16px; 1762 padding: 2px 8px; 1763 background: url('images/button-grad.png') 0 0 rgb(33, 117, 155); 1764 color: rgb(255, 255, 255); 1765 font-weight: bold; 1766 text-shadow: rgba(0, 0, 0, 0.3) 0 -1px 0; 1767 } 1768 1769 form.settings input.submit:hover { 1770 border-color: rgb(0, 102, 0); 1771 } 1772 1773 form.settings input.submit:active { 1774 background-position: 0 30px; 1775 } 1776 1777 form.settings a.cancel { 1778 display: block; 1779 float: left; 1780 font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif; 1781 -moz-border-radius: 11px; 1782 -khtml-border-radius: 11px; 1783 -webkit-border-radius: 11px; 1784 border-radius: 11px; 1785 border: 1px solid rgb(187, 187, 187); 1786 cursor: pointer; 1787 font-size: 11px; 1788 line-height: 16px; 1789 padding: 2px 8px; 1790 background: url('images/white-grad.png') repeat-x scroll rgb(242, 242, 242); 1791 color: rgb(70, 70, 70); 1792 cursor: pointer; 1793 font-weight: bold; 1794 text-shadow: rgba(255, 255, 255, 0.7) 0 -1px 0; 1795 margin-right: 6px; 1796 text-decoration: none; 1797 } 1798 1799 form.settings a.cancel:hover { 1800 border-color: rgb(153, 51, 51); 1801 color: rgb(204, 51, 51); 1802 } 1803 1804 form.settings a.cancel:active { 1805 background: url('images/white-grad-active.png') repeat-x scroll rgb(238, 238, 238); 1806 } 1807 1808 form.settings div#option-mod-rewrite div.inputs label.radios span { 1809 display: inline-block; 1810 width: 7em; 1811 } 1812 1813 form.settings div#option-mod-rewrite div.inputs label.radios code { 1814 white-space: nowrap; 1815 } 1816 1817 form.settings textarea#rewrite-rules { 1818 width: 99%; 1819 } 1820 1821 form.settings select#timezone-string option { 1822 margin-left: 1em; 1823 } 1824 1825 1826 /* Footer */ 1827 1828 p#bbShowOff { 1829 margin: 0 8px 8px 0; 1830 padding: 6px 8px; 1831 color: rgb(255, 255, 255); 1832 background-color: rgb(170, 170, 170); 1833 font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; 1834 font-size: 0.9em; 1835 font-style: italic; 1836 -moz-border-radius: 6px; 1837 -khtml-border-radius: 6px; 1838 -webkit-border-radius: 6px; 1839 border-radius: 6px; 1840 float: right; 1841 } 1842 1843 div#bbFoot { 1844 background-color: rgb(70, 70, 70); 1845 color: rgb(153, 153, 153); 1846 margin-top: -45px; 1847 clear: both; 1848 position: relative; 1849 width: 100%; 1850 font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; 1851 font-size: 0.9em; 1852 font-style: italic; 1853 } 1854 1855 div#bbFoot p { 1856 line-height: 15px; 1857 padding: 15px; 1858 } 1859 1860 div#bbFoot p a { 1861 color: rgb(204, 204, 204); 1862 text-decoration: none; 1863 } 1864 1865 p#bbThanks { 1866 float: left; 1867 } 1868 1869 p#bbVersion { 1870 text-align: right; 1871 } 1872 1873 div.clear { 1874 clear: both !important; 1875 height: 0; 1876 line-height: 0; 1877 font-size: 0; 1878 } 1879 1880 1881 1882 1883 1884 1885 1886 1887 /* Layout classes */ 1888 /* 1889 .absleft { 1890 position: absolute; 1891 left: 0; 1892 } 1893 1894 .absright { 1895 position: absolute; 1896 right: 0; 1897 } 1898 1899 .abstop { 1900 position: absolute; 1901 top: 0; 1902 } 1903 1904 .posrel { 1905 position: relative; 1906 } 1907 1908 .alignleft { 1909 float: left; 1910 } 1911 1912 .alignright { 1913 float: right; 1914 } 1915 */ 1916 /* 1917 .alternate, .alt { 1918 background: #f1f1f1; 1919 } 1920 */ 1921 /* 1922 .active { 1923 background-color: rgb(200, 250, 200); 1924 } 1925 */ 1926 1927 1928 1929 1930 /* List Blocks */ 1931 1932
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Nov 15 04:45:27 2010 | Cross-referenced by PHPXref 0.7 |