Make WordPress Core

Changeset 16136


Ignore:
Timestamp:
11/01/2010 04:30:27 PM (16 years ago)
Author:
westi
Message:

First pass of wp-admin.css cleanup from JohnONolan.
Merge conflicts manually resolved and marked for review
Not recompressed for now to allow for easier side by side testing.
So test with SCRIPT_DEBUG set to true.
See #14770 props JohnONolan

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/wp-admin.dev.css

    r16081 r16136  
     1/*------------------------------------------------------------------------------
     2
     3
     4Hello, this is the main WordPress admin CSS file.
     5All the important stuff is in here.
     6
     7
     8IMPORTANT:
     9----------
     10Please be careful when editing this file, do not just add
     11another ID or Class because it's easy, we want to try and
     12maintain the WordPress CSS with good styles, not easy ones!
     13
     14Before editing or adding to this file, please review the table
     15of contents and ensure that you add new styles in the correct
     16location. This makes it easier to maintain going forwards.
     17
     18Be obvious, not clever. Styles which can be easily changed
     19are far more desirable than a complex cascading masterpiece.
     20
     21
     22TABLE OF CONTENTS:
     23------------------
     24 1.0 - Text Elements
     25 2.0 - Forms
     26 3.0 - Actions
     27 4.0 - Notifications
     28 5.0 - TinyMCE
     29 6.0 - Admin Header
     30        6.1 - Favorites Menu
     31        6.2 - Screen Options Tabs
     32 7.0 - Main Navigation
     33 8.0 - Layout Blocks
     34 9.0 - Dashboard
     3510.0 - List Posts
     36        10.1 - Inline Editing
     3711.0 - Write/Edit Post Screen
     38        11.1 - Custom Fields
     39        11.2 - Post Revisions
     4012.0 - Categories
     4113.0 - Tags
     4214.0 - Media Screen
     43        14.1 - Media Uploader
     44        14.2 - Image Editor
     4515.0 - Comments Screen
     4616.0 - Themes
     47        16.1 - Custom Header
     48        16.2 - Custom Background
     49        16.3 - Tabbed Admin Screen Interface
     5017.0 - Plugins
     5118.0 - Users
     5219.0 - Tools
     5320.0 - Settings
     5421.0 - Admin Footer
     5522.0 - Misc
     5623.0 - Dead
     57
     58
     59------------------------------------------------------------------------------*/
     60
     61
     62
     63
     64/*------------------------------------------------------------------------------
     65  1.0 - Text Styles
     66------------------------------------------------------------------------------*/
     67
     68p,
     69ul,
     70ol,
     71blockquote,
     72input,
     73select {
     74        font-size: 12px;
     75}
     76
     77ol {
     78        list-style-type: decimal;
     79        margin-left: 2em;
     80}
     81
     82.code, code {
     83        font-family: Consolas, Monaco, Courier, monospace;
     84}
     85
     86kbd, code {
     87        padding: 1px 3px;
     88        margin: 0 1px;
     89        font-size: 11px;
     90}
     91
     92.quicktags, .search {
     93        font: 12px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
     94}
     95
     96.icon32 {
     97        float: left;
     98        height: 36px;
     99        margin: 14px 6px 0 0;
     100        width: 36px;
     101}
     102
     103.key-labels label {
     104        line-height: 24px;
     105}
     106
     107.subtitle {
     108        font-size: 0.75em;
     109        line-height: 1;
     110        padding-left: 25px;
     111}
     112
     113.pre {
     114        /* http://www.longren.org/2006/09/27/wrapping-text-inside-pre-tags/ */
     115        white-space: pre-wrap; /* css-3 */
     116        white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
     117        white-space: -pre-wrap; /* Opera 4-6 */
     118        white-space: -o-pre-wrap; /* Opera 7 */
     119        word-wrap: break-word; /* Internet Explorer 5.5+ */
     120}
     121
     122.howto {
     123        font-style: italic;
     124        display: block;
     125        font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
     126}
     127
     128p.install-help {
     129        margin: 8px 0;
     130        font-style: italic;
     131}
     132
     133
     134/*------------------------------------------------------------------------------
     135  2.0 - Forms
     136------------------------------------------------------------------------------*/
     137
    1138textarea,
    2139input[type="text"],
     
    15152}
    16153
    17 p,
    18 ul,
    19 ol,
    20 blockquote,
    21 input,
    22 select {
    23         font-size: 12px;
    24 }
    25 
    26154select option {
    27155        padding: 2px;
    28 }
    29 
    30 .plugins #name {width: 33%}
    31 
    32 .plugins .name,
    33 #pass-strength-result.strong,
    34 #pass-strength-result.short,
    35 .button-highlighted,
    36 input.button-highlighted,
    37 #quicktags #ed_strong,
    38 #ed_reply_toolbar #ed_reply_strong {
    39         font-weight: bold;
    40 }
    41 
    42 .plugins p {
    43         margin: 0 4px;
    44         padding: 0;
    45 }
    46 
    47 .plugins .desc p {
    48         margin: 0 0 8px;
    49 }
    50 
    51 .plugins td.desc {
    52         line-height: 1.5em;
    53 }
    54 
    55 .plugins .desc ul,
    56 .plugins .desc ol {
    57         margin: 0 0 0 2em;
    58 }
    59 
    60 .plugins .desc ul {
    61         list-style-type: disc;
    62 }
    63 
    64 .plugins .action-links {
    65         white-space: nowrap;
    66 }
    67 
    68 .plugins .row-actions-visible {
    69         padding: 0;
    70 }
    71 
    72 .plugins tbody th.check-column {
    73         padding: 7px 0;
    74 }
    75 
    76 .plugins td, .plugins th {
    77         border-bottom: 0 none;
    78 }
    79 
    80 #install-plugins .plugins td,
    81 #install-plugins .plugins th {
    82         border-bottom-style: solid;
    83         border-bottom-width: 1px;
    84 }
    85 
    86 .plugins .inactive td,
    87 .plugins .inactive th,
    88 .plugins .active td,
    89 .plugins .active th {
    90         border-top-style: solid;
    91         border-top-width: 1px;
    92         padding: 5px 7px 0;
    93 }
    94 
    95 #wpbody-content .plugins .plugin-title {
    96         padding-right: 12px;
    97 }
    98 
    99 .plugins .second td,
    100 .plugins .second th {
    101         border-top: 0 none;
    102         padding: 0 7px 5px;
    103 }
    104 
    105 .plugins-php .widefat tfoot th,
    106 .plugins-php .widefat tfoot td {
    107         border-top-style: solid;
    108         border-top-width: 1px;
    109 }
    110 
    111 .import-system {
    112         font-size: 16px;
    113 }
    114 
    115 .anchors {
    116         margin: 10px 20px 10px 20px;
    117 }
    118 
    119 #loading-items {
    120         position: absolute;
    121         z-index: 9999;
    122         padding: 10px;
    123         background-color: #fff;
    124         font-weight: bold;
    125         text-align: center;
    126         opacity: 0.5;
    127 }
    128 
    129 table#availablethemes {
    130         border-spacing: 0;
    131         border-width: 1px 0;
    132         border-style: solid none;
    133         margin: 10px auto;
    134         width: 100%;
    135 }
    136 
    137 td.available-theme {
    138         vertical-align: top;
    139         width: 240px;
    140         margin: 0;
    141         padding: 20px;
    142         text-align: left;
    143 }
    144 
    145 table#availablethemes td {
    146         border-width: 0 1px 1px;
    147         border-style: none solid solid;
    148 }
    149 
    150 table#availablethemes td.right,
    151 table#availablethemes td.left  {
    152         border-right: 0 none;
    153         border-left: 0 none;
    154 }
    155 
    156 table#availablethemes td.bottom {
    157         border-bottom: 0 none;
    158 }
    159 
    160 .available-theme a.screenshot {
    161         width: 240px;
    162         height: 180px;
    163         display: block;
    164         border-width: 1px;
    165         border-style: solid;
    166         margin-bottom: 10px;
    167         overflow: hidden;
    168 }
    169 
    170 .available-theme img {
    171         width: 240px;
    172 }
    173 
    174 .available-theme h3 {
    175         margin: 15px 0 5px;
    176 }
    177 
    178 #current-theme {
    179         margin: 1em 0 1.5em;
    180 }
    181 
    182 #current-theme a {
    183         border-bottom: none;
    184 }
    185 
    186 #current-theme h3 {
    187         font-size: 17px;
    188         font-weight: normal;
    189         margin: 0;
    190 }
    191 
    192 #current-theme .theme-description {
    193         margin-top: 5px;
    194 }
    195 
    196 #current-theme img {
    197         float: left;
    198         border-width: 1px;
    199         border-style: solid;
    200         margin-right: 1em;
    201         margin-bottom: 1.5em;
    202         width: 150px;
    203 }
    204 
    205 .theme-options span {
    206         text-transform: uppercase;
    207         font-size: 13px;
    208 }
    209 
    210 .theme-options a {
    211         font-size: 15px;
    212 }
    213 
    214 #TB_window #TB_title a.tb-theme-preview-link,
    215 #TB_window #TB_title a.tb-theme-preview-link:visited {
    216         font-weight: bold;
    217         text-decoration: none;
    218 }
    219 
    220 #TB_window #TB_title {
    221         background-color: #222;
    222         color: #cfcfcf;
    223 }
    224 
    225 .checkbox {
    226         border: none;
    227         margin: 0;
    228         padding: 0;
    229 }
    230 
    231 .code, code {
    232         font-family: Consolas, Monaco, Courier, monospace;
    233 }
    234 
    235 kbd, code {
    236         padding: 1px 3px;
    237         margin: 0 1px;
    238         font-size: 11px;
    239 }
    240 
    241 .commentlist li {
    242         padding: 1em 1em .2em;
    243         margin: 0;
    244         border-bottom-width: 1px;
    245         border-bottom-style: solid;
    246 }
    247 
    248 .commentlist li li {
    249         border-bottom: 0;
    250         padding: 0;
    251 }
    252 
    253 .commentlist p {
    254         padding: 0;
    255         margin: 0 0 .8em;
    256 }
    257 
    258 .post-categories {
    259         display: inline;
    260         margin: 0;
    261         padding: 0;
    262 }
    263 
    264 .post-categories li {
    265         display: inline;
    266 }
    267 
    268 .quicktags, .search {
    269         font: 12px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
    270156}
    271157
     
    284170form p.submit a.cancel:hover {
    285171        text-decoration: none;
    286 }
    287 
    288 #submitdiv h3 {
    289         margin-bottom: 0 !important;
    290 }
    291 
    292 #misc-publishing-actions {
    293         padding: 6px 0 16px 0;
    294 }
    295 
    296 .misc-pub-section {
    297         padding: 6px;
    298         border-bottom-width: 1px;
    299         border-bottom-style: solid;
    300 }
    301 
    302 .misc-pub-section-last {
    303         border-bottom: 0 none;
    304 }
    305 
    306 #minor-publishing-actions {
    307         padding: 6px;
    308         text-align: right;
    309 }
    310 
    311 #minor-publishing {
    312         border-bottom-width: 1px;
    313         border-bottom-style: solid;
    314 }
    315 
    316 #save-post {
    317         float: left;
    318 }
    319 
    320 #minor-publishing .ajax-loading {
    321         padding: 3px 0 0 4px;
    322         float: left;
    323 }
    324 
    325 .preview {
    326         float: right;
    327 }
    328 
    329 #major-publishing-actions {
    330         padding: 6px;
    331         clear: both;
    332         border-top: none;
    333 }
    334 
    335 #minor-publishing-actions input,
    336 #major-publishing-actions input,
    337 #minor-publishing-actions .preview {
    338         min-width: 80px;
    339         text-align: center;
    340 }
    341 
    342 #delete-action {
    343         line-height: 25px;
    344         vertical-align: middle;
    345         text-align: left;
    346         float: left;
    347 }
    348 
    349 #publishing-action {
    350         text-align: right;
    351         float: right;
    352         line-height: 23px;
    353 }
    354 
    355 #post-body #minor-publishing {
    356         padding-bottom: 10px;
    357 }
    358 
    359 #post-body #misc-publishing-actions {
    360         padding: 0;
    361 }
    362 
    363 #post-body .misc-pub-section {
    364         border-right-width: 1px;
    365         border-right-style: solid;
    366         border-bottom: 0 none;
    367         min-height: 30px;
    368         float: left;
    369         max-width: 32%;
    370 }
    371 
    372 #post-body .misc-pub-section-last {
    373         border-right: 0;
    374 }
    375 
    376 #sticky-span {
    377         margin-left: 18px;
    378 }
    379 
    380 #post-status-display,
    381 #post-visibility-display {
    382         font-weight: bold;
    383 }
    384 
    385 .side-info {
    386         margin: 0;
    387         padding: 4px;
    388         font-size: 11px;
    389 }
    390 
    391 .side-info h5 {
    392         padding-bottom: 7px;
    393         font-size: 14px;
    394         margin: 12px 2px 5px;
    395         border-bottom-width: 1px;
    396         border-bottom-style: solid;
    397 }
    398 
    399 .side-info ul {
    400         margin: 0;
    401         padding-left: 18px;
    402         list-style: square;
    403172}
    404173
     
    430199}
    431200
     201#minor-publishing-actions input,
     202#major-publishing-actions input,
     203#minor-publishing-actions .preview {
     204        min-width: 80px;
     205        text-align: center;
     206}
     207
     208textarea.all-options, input.all-options {
     209        width: 250px;
     210}
     211
     212input.large-text,
     213textarea.large-text {
     214        width: 99%;
     215}
     216
     217input.regular-text,
     218#adduser .form-field input {
     219        width: 25em;
     220}
     221
     222input.small-text {
     223        width: 50px;
     224}
     225
     226#doaction,
     227#doaction2,
     228#post-query-submit {
     229        margin-right: 8px;
     230}
     231
     232.tablenav select[name="action"],
     233.tablenav select[name="action2"] {
     234        width: 130px;
     235}
     236
     237.tablenav select[name="m"] {
     238        width: 155px;
     239}
     240
     241.tablenav select#cat {
     242        width: 170px;
     243}
     244
     245#wpcontent select {
     246        padding: 2px;
     247        height: 2em;
     248        font-size: 11px;
     249}
     250
     251#wpcontent option {
     252        padding: 2px;
     253}
     254
     255#timezone_string option {
     256        margin-left: 1em;
     257}
     258
     259label,
     260#your-profile label + a {
     261        vertical-align: middle;
     262}
     263
     264#misc-publishing-actions label {
     265        vertical-align: baseline;
     266}
     267
     268#pass-strength-result {
     269        border-style: solid;
     270        border-width: 1px;
     271        float: left;
     272        margin: 12px 5px 5px 1px;
     273        padding: 3px 5px;
     274        text-align: center;
     275        width: 200px;
     276        display: none;
     277}
     278.indicator-hint {
     279        padding-top: 8px;
     280}
     281
     282p.search-box {
     283        float: right;
     284        margin: -5px 0 0;
     285}
     286
     287
     288/*------------------------------------------------------------------------------
     289  3.0 - Actions
     290------------------------------------------------------------------------------*/
     291
     292#major-publishing-actions {
     293        padding: 6px;
     294        clear: both;
     295        border-top: none;
     296}
     297
     298
     299
     300#delete-action {
     301        line-height: 25px;
     302        vertical-align: middle;
     303        text-align: left;
     304        float: left;
     305}
     306
     307#publishing-action {
     308        text-align: right;
     309        float: right;
     310        line-height: 23px;
     311}
     312
     313#post-body #minor-publishing {
     314        padding-bottom: 10px;
     315}
     316
     317#post-body #misc-publishing-actions {
     318        padding: 0;
     319}
     320
     321#post-body .misc-pub-section {
     322        border-right-width: 1px;
     323        border-right-style: solid;
     324        border-bottom: 0 none;
     325        min-height: 30px;
     326        float: left;
     327        max-width: 32%;
     328}
     329
     330#post-body .misc-pub-section-last {
     331        border-right: 0;
     332}
     333
     334#misc-publishing-actions {
     335        padding: 6px 0 16px 0;
     336}
     337
     338.misc-pub-section {
     339        padding: 6px;
     340        border-bottom-width: 1px;
     341        border-bottom-style: solid;
     342}
     343
     344.misc-pub-section-last {
     345        border-bottom: 0 none;
     346}
     347
     348#minor-publishing-actions {
     349        padding: 6px;
     350        text-align: right;
     351}
     352
     353#minor-publishing {
     354        border-bottom-width: 1px;
     355        border-bottom-style: solid;
     356}
     357
     358#save-post {
     359        float: left;
     360}
     361
     362#minor-publishing .ajax-loading {
     363        padding: 3px 0 0 4px;
     364        float: left;
     365}
     366
     367.preview {
     368        float: right;
     369}
     370
     371
     372
     373#sticky-span {
     374        margin-left: 18px;
     375}
     376
     377#post-status-display,
     378#post-visibility-display {
     379        font-weight: bold;
     380}
     381
     382.side-info {
     383        margin: 0;
     384        padding: 4px;
     385        font-size: 11px;
     386}
     387
     388.side-info h5 {
     389        padding-bottom: 7px;
     390        font-size: 14px;
     391        margin: 12px 2px 5px;
     392        border-bottom-width: 1px;
     393        border-bottom-style: solid;
     394}
     395
     396.side-info ul {
     397        margin: 0;
     398        padding-left: 18px;
     399        list-style: square;
     400}
     401
    432402a.button,
    433403a.button-primary,
     
    439409}
    440410
    441 #doaction,
    442 #doaction2,
    443 #post-query-submit {
    444         margin-right: 8px;
    445 }
    446 
    447 .tablenav select[name="action"],
    448 .tablenav select[name="action2"] {
    449         width: 130px;
    450 }
    451 
    452 .tablenav select[name="m"] {
    453         width: 155px;
    454 }
    455 
    456 .tablenav select#cat {
    457         width: 170px;
    458 }
    459 
    460 #wpcontent select {
    461         padding: 2px;
    462         height: 2em;
    463         font-size: 11px;
    464 }
    465 
    466 #wpcontent option {
    467         padding: 2px;
    468 }
    469 
    470 #timezone_string option {
    471         margin-left: 1em;
    472 }
    473 
    474411.approve {
    475412        display: none;
     
    486423}
    487424
    488 .narrow {
    489         width: 70%;
    490         margin-bottom: 40px;
    491 }
    492 
    493 .narrow p {
    494         line-height: 150%;
    495 }
    496 
    497 textarea.all-options, input.all-options {
    498         width: 250px;
    499 }
    500 
    501 #namediv table {
    502         width: 100%;
    503 }
    504 
    505 #namediv td.first {
    506         width: 10px;
    507         white-space: nowrap;
    508 }
    509 
    510 #namediv input {
    511         width: 98%;
    512 }
    513 
    514 #namediv p {
    515         margin: 10px 0;
    516 }
    517 
    518 #wpbody-content .metabox-holder {
    519         padding-top: 10px;
    520 }
    521 
    522 #content {
    523         margin: 0;
    524         width: 100%;
    525 }
    526 
    527 #editorcontainer #content {
    528         padding: 6px;
    529         line-height: 150%;
    530         border: 0 none;
    531         outline: none;
    532         resize: vertical;
    533         -moz-box-sizing: border-box;
    534         -webkit-box-sizing: border-box;
    535         -khtml-box-sizing: border-box;
    536         box-sizing: border-box;
    537 }
    538 
    539 #editorcontainer,
    540 #quicktags {
    541         border-style: solid;
    542         border-width: 1px;
    543         border-collapse: separate;
    544         -moz-border-radius: 6px 6px 0 0;
    545         -webkit-border-top-right-radius: 6px;
    546         -webkit-border-top-left-radius: 6px;
    547         -khtml-border-top-right-radius: 6px;
    548         -khtml-border-top-left-radius: 6px;
    549         border-top-right-radius: 6px;
    550         border-top-left-radius: 6px;
    551 }
    552 
    553 #quicktags {
    554         padding: 0;
    555         margin-bottom: -3px;
    556         border-bottom-width: 3px;
    557         background-image: url("../images/ed-bg.gif");
    558         background-position: left top;
    559         background-repeat: repeat-x;
    560 }
    561 
    562 #quicktags #ed_toolbar {
    563         padding: 2px 4px 0;
    564 }
    565 
    566 #ed_toolbar input,
    567 #ed_reply_toolbar input {
    568         margin: 3px 1px 4px;
    569         line-height: 18px;
    570         display: inline-block;
    571         min-width: 26px;
    572         padding: 2px 4px;
    573         font-size: 12px;
    574 }
    575 
    576 #ed_reply_toolbar input {
    577         margin: 1px 2px 1px 1px;
    578 }
    579 
    580 #quicktags #ed_link,
    581 #ed_reply_toolbar #ed_reply_link {
    582         text-decoration: underline;
    583 }
    584 
    585 #quicktags #ed_del,
    586 #ed_reply_toolbar #ed_reply_del {
    587         text-decoration: line-through;
    588 }
    589 
    590 #quicktags #ed_em,
    591 #ed_reply_toolbar #ed_reply_em {
    592         font-style: italic;
    593 }
    594 
    595 #excerpt, .attachmentlinks {
    596         margin: 0;
    597         height: 4em;
    598         width: 98%;
    599 }
    600 
    601 /* post meta postbox */
    602 #postcustomstuff table,
    603 #postcustomstuff input,
    604 #postcustomstuff textarea {
    605         border-width: 1px;
    606         border-style: solid;
    607         -moz-border-radius: 3px;
    608         -khtml-border-radius: 3px;
    609         -webkit-border-radius: 3px;
    610         border-radius: 3px;
    611 }
    612 
    613 #postcustomstuff .updatemeta,
    614 #postcustomstuff .deletemeta {
    615         margin: auto;
    616 }
    617 
    618 #postcustomstuff thead th {
    619         padding: 5px 8px 8px;
    620 }
    621 
    622 #postcustom #postcustomstuff .submit {
    623         border: 0 none;
    624         float: none;
    625         padding: 5px 8px;
    626 }
    627 
    628 #side-sortables #postcustom #postcustomstuff .submit {
    629         padding: 0 5px;
    630 }
    631 
    632 #side-sortables #postcustom #postcustomstuff td.left input {
    633         margin: 3px 3px 0;
    634 }
    635 
    636 #side-sortables #postcustom #postcustomstuff #the-list textarea {
    637         height: 85px;
    638         margin: 3px;
    639 }
    640 
    641 #postcustomstuff table {
    642         margin: 0;
    643         width: 100%;
    644         border-width: 1px;
    645         border-style: solid;
    646         border-spacing: 0;
    647 }
    648 
    649 #postcustomstuff table input,
    650 #postcustomstuff table select,
    651 #postcustomstuff table textarea {
    652         width: 95%;
    653         margin: 8px 0 8px 8px;
    654 }
    655 
    656 #postcustomstuff th.left,
    657 #postcustomstuff td.left {
    658         width: 38%;
    659 }
    660 
    661 #postcustomstuff .submit input {
    662         width: auto;
    663 }
    664 
    665 #postcustomstuff #newmeta .submit {
    666         padding: 0 8px;
    667 }
    668 
    669 #postcustomstuff table #addmetasub {
    670         width: auto;
    671 }
    672 
    673 #postcustomstuff #newmetaleft {
    674         vertical-align: top;
    675 }
    676 
    677 #postcustomstuff #newmetaleft a {
    678         padding: 0 10px;
    679         text-decoration: none;
    680 }
    681 
    682 #save {
    683         width: 15em;
    684 }
    685 
    686 #template div {
    687         margin-right: 190px;
    688 }
    689 
    690 * html #template div {
    691         margin-right: 0;
    692 }
    693 
    694 /* A handy div class for hiding controls.
    695 Some browsers will disable them when you
    696 set display: none; */
    697 .zerosize {
    698         height: 0;
    699         width: 0;
    700         margin: 0;
    701         border: 0;
    702         padding: 0;
    703         overflow: hidden;
    704         position: absolute;
    705 }
    706 
    707 * html #themeselect {
    708         padding: 0 3px;
    709         height: 22px;
    710 }
    711 
    712 #your-profile legend {
    713         font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
    714         font-size: 22px;
    715 }
    716 
    717 #your-profile #rich_editing {
    718         border: none;
    719 }
    720 
    721 #howto {
    722         font-size: 11px;
    723         margin: 0 5px;
    724         display: block;
    725 }
    726 
    727 #ajax-response.alignleft {
    728         margin-left: 2em;
    729 }
    730 
    731 div.nav {
    732         height: 2em;
    733         padding: 7px 10px;
    734         vertical-align: text-top;
    735         margin: 5px 0;
    736 }
    737 
    738 .nav .button-secondary {
    739         padding: 2px 4px;
    740 }
    741 
    742 .tablenav-pages a {
    743         border-bottom-style: solid;
    744         border-bottom-width: 2px;
    745         font-weight: bold;
    746         margin-right: 1px;
    747         padding: 0 2px;
    748 }
    749 .tablenav-pages .current-page {
    750         text-align: center;
    751 }
    752 .tablenav-pages .next-page {
    753         margin-left: 2px;
    754 }
    755 
    756 p.pagenav {
    757         margin: 0;
    758         display: inline;
    759 }
    760 
    761 .pagenav span {
    762         font-weight: bold;
     425.add-new-h2 {
     426        font-style: normal;
    763427        margin: 0 6px;
    764 }
    765 
    766 .row-title {
    767         font-size: 12px !important;
    768         font-weight: bold;
    769 }
    770 
    771 .widefat .column-comment p {
    772         margin: 0.6em 0;
    773 }
    774 
    775 .column-author img, .column-username img {
    776         float: left;
    777         margin-right: 10px;
    778         margin-top: 3px;
    779 }
    780 
    781 .tablenav a.button-secondary {
    782         display: block;
    783         margin: 3px 8px 0 0;
    784 }
    785 
    786 .tablenav {
    787         clear: both;
    788         height: 30px;
    789         margin: 6px 0 4px;
    790         vertical-align: middle;
    791 }
    792 
    793 .tablenav .tablenav-pages {
    794         float: right;
    795         display: block;
    796         cursor: default;
    797         height: 30px;
    798         line-height: 30px;
    799         font-size: 11px;
    800 }
    801 
    802 .tablenav .tablenav-pages a,
    803 .tablenav-pages span.current  {
    804         text-decoration: none;
    805         border: none;
    806         padding: 3px 6px;
    807         border-width: 1px;
    808         border-style: solid;
    809         -moz-border-radius: 5px;
    810         -khtml-border-radius: 5px;
    811         -webkit-border-radius: 5px;
    812         border-radius: 5px;
    813 }
    814 
    815 .tablenav .displaying-num {
    816         margin-right: 10px;
    817         font-size: 12px;
    818         font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
    819         font-style: italic;
    820 }
    821 
    822 .tablenav .actions {
    823         padding: 2px 8px 0 0;
    824 }
    825 
    826 td.media-icon {
    827         text-align: center;
    828         width: 80px;
    829         padding-top: 8px;
    830         padding-bottom: 8px;
    831 }
    832 
    833 td.media-icon img {
    834         max-width: 80px;
    835         max-height: 60px;
    836 }
     428        position: relative;
     429        top: -3px;
     430}
     431
     432td.action-links,
     433th.action-links {
     434        text-align: right;
     435}
     436
     437.describe .del-link {
     438        padding-left: 5px;
     439}
     440
     441
     442/*------------------------------------------------------------------------------
     443  4.0 - Notifications
     444------------------------------------------------------------------------------*/
    837445
    838446#update-nag, .update-nag {
     
    864472}
    865473
    866 #pass-strength-result {
     474ul#dismissed-updates {
     475        display: none;
     476}
     477form.upgrade {
     478        margin-top: 8px;
     479}
     480
     481form.upgrade .hint {
     482        font-style: italic;
     483        font-size: 85%;
     484        margin: -0.5em 0 2em 0;
     485}
     486
     487.ajax-feedback {
     488        visibility: hidden;
     489        vertical-align: bottom;
     490}
     491
     492#ajax-response.alignleft {
     493        margin-left: 2em;
     494}
     495
     496
     497/*------------------------------------------------------------------------------
     498  5.0 - TinyMCE
     499------------------------------------------------------------------------------*/
     500
     501#editorcontainer #content {
     502        padding: 6px;
     503        line-height: 150%;
     504        border: 0 none;
     505        outline: none;
     506        resize: vertical;
     507        -moz-box-sizing: border-box;
     508        -webkit-box-sizing: border-box;
     509        -khtml-box-sizing: border-box;
     510        box-sizing: border-box;
     511}
     512
     513#editorcontainer,
     514#quicktags {
    867515        border-style: solid;
    868516        border-width: 1px;
    869         float: left;
    870         margin: 12px 5px 5px 1px;
    871         padding: 3px 5px;
    872         text-align: center;
    873         width: 200px;
     517        border-collapse: separate;
     518        -moz-border-radius: 6px 6px 0 0;
     519        -webkit-border-top-right-radius: 6px;
     520        -webkit-border-top-left-radius: 6px;
     521        -khtml-border-top-right-radius: 6px;
     522        -khtml-border-top-left-radius: 6px;
     523        border-top-right-radius: 6px;
     524        border-top-left-radius: 6px;
     525}
     526
     527#quicktags {
     528        padding: 0;
     529        margin-bottom: -3px;
     530        border-bottom-width: 3px;
     531        background-image: url("../images/ed-bg.gif");
     532        background-position: left top;
     533        background-repeat: repeat-x;
     534}
     535
     536#quicktags #ed_toolbar {
     537        padding: 2px 4px 0;
     538}
     539
     540#ed_toolbar input,
     541#ed_reply_toolbar input {
     542        margin: 3px 1px 4px;
     543        line-height: 18px;
     544        display: inline-block;
     545        min-width: 26px;
     546        padding: 2px 4px;
     547        font-size: 12px;
     548}
     549
     550#ed_reply_toolbar input {
     551        margin: 1px 2px 1px 1px;
     552}
     553
     554#quicktags #ed_link,
     555#ed_reply_toolbar #ed_reply_link {
     556        text-decoration: underline;
     557}
     558
     559#quicktags #ed_del,
     560#ed_reply_toolbar #ed_reply_del {
     561        text-decoration: line-through;
     562}
     563
     564#quicktags #ed_em,
     565#ed_reply_toolbar #ed_reply_em {
     566        font-style: italic;
     567}
     568
     569#wp_editbtns,
     570#wp_gallerybtns {
     571        padding: 2px;
     572        position: absolute;
    874573        display: none;
    875 }
    876 
    877 .row-actions {
    878         visibility: hidden;
    879         padding: 2px 0 0;
    880 }
    881 
    882 tr:hover .row-actions,
    883 div.comment-item:hover .row-actions {
    884         visibility: visible;
    885 }
    886 
    887 .row-actions-visible {
    888         padding: 2px 0 0;
    889 }
    890 
    891 /* Admin Header */
     574        z-index: 999998;
     575}
     576
     577#wp_editimgbtn,
     578#wp_delimgbtn,
     579#wp_editgallery,
     580#wp_delgallery {
     581        margin: 2px;
     582        padding: 2px;
     583        border-width: 1px;
     584        border-style: solid;
     585        -moz-border-radius: 3px;
     586        -khtml-border-radius: 3px;
     587        -webkit-border-radius: 3px;
     588        border-radius: 3px;
     589}
     590
     591
     592/*------------------------------------------------------------------------------
     593  6.0 - Admin Header
     594------------------------------------------------------------------------------*/
    892595#wphead-info {
    893596        margin: 0 0 0 15px;
     
    953656        text-decoration:underline;
    954657}
     658
     659
     660/*------------------------------------------------------------------------------
     661  6.1 - Favorites Menu
     662------------------------------------------------------------------------------*/
     663
     664#favorite-actions {
     665        float: right;
     666        margin: 11px 12px 0;
     667        min-width: 130px;
     668        position: relative;
     669}
     670
     671#favorite-first {
     672        -moz-border-radius: 12px;
     673        -khtml-border-radius: 12px;
     674        -webkit-border-radius: 12px;
     675        border-radius: 12px;
     676        line-height: 15px;
     677        padding: 3px 30px 4px 12px;
     678        border-width: 1px;
     679        border-style: solid;
     680}
     681
     682#favorite-inside {
     683        margin: 0 0 0 0px;
     684        padding: 2px 1px;
     685        border-width: 1px;
     686        border-style: solid;
     687        position: absolute;
     688        z-index: 11;
     689        display: none;
     690        -moz-border-radius: 0 0 12px 12px;
     691        -webkit-border-bottom-right-radius: 12px;
     692        -webkit-border-bottom-left-radius: 12px;
     693        -khtml-border-bottom-right-radius: 12px;
     694        -khtml-border-bottom-left-radius: 12px;
     695        border-bottom-right-radius: 12px;
     696        border-bottom-left-radius: 12px;
     697}
     698
     699#favorite-actions a {
     700        display: block;
     701        text-decoration: none;
     702        font-size: 11px;
     703}
     704
     705#favorite-inside a {
     706        padding: 3px 5px 3px 10px;
     707}
     708
     709#favorite-toggle {
     710        height: 22px;
     711        position: absolute;
     712        right: 0;
     713        top: 1px;
     714        width: 28px;
     715}
     716
     717#favorite-actions .slide-down {
     718        -moz-border-radius: 12px 12px 0 0;
     719        -webkit-border-bottom-right-radius: 0;
     720        -webkit-border-bottom-left-radius: 0;
     721        -khtml-border-bottom-right-radius: 0;
     722        -khtml-border-bottom-left-radius: 0;
     723        border-bottom-right-radius: 0;
     724        border-bottom-left-radius: 0;
     725        border-bottom: none;
     726}
     727
     728
     729/*------------------------------------------------------------------------------
     730  6.2 - Screen Options Tabs
     731------------------------------------------------------------------------------*/
     732
     733#screen-meta {
     734        position: relative;
     735        clear: both;
     736}
     737
     738#screen-meta-links {
     739        margin: 0 18px 0 0;
     740}
     741
     742#screen-meta .screen-reader-text {
     743        visibility: hidden;
     744}
     745
     746#screen-options-link-wrap,
     747#contextual-help-link-wrap {
     748        float: right;
     749        height: 22px;
     750        padding: 0;
     751        margin: 0 6px 0 0;
     752        font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
     753        background: #e3e3e3;
     754        -moz-border-radius-bottomleft: 3px;
     755        -moz-border-radius-bottomright: 3px;
     756        -webkit-border-bottom-left-radius: 3px;
     757        -webkit-border-bottom-right-radius: 3px;
     758}
     759
     760#contextual-help-wrap li {
     761        list-style-type: disc;
     762        margin-left: 18px;
     763}
     764
     765#screen-meta a.show-settings {
     766        text-decoration: none;
     767        z-index: 1;
     768        padding: 0 16px 0 6px;
     769        height: 22px;
     770        line-height: 22px;
     771        font-size: 10px;
     772        display: block;
     773        background-repeat: no-repeat;
     774        background-position: right bottom;
     775}
     776
     777#screen-meta a.show-settings {
     778        background-image: url( ../images/screen-options-right.gif?ver=20100531 );
     779}
     780
     781#screen-meta a.show-settings:hover {
     782        text-decoration: none;
     783}
     784
     785#screen-options-wrap h5,
     786#contextual-help-wrap h5 {
     787        margin: 8px 0;
     788        font-size: 13px;
     789}
     790
     791#screen-options-wrap,
     792#contextual-help-wrap {
     793        border-style: none solid solid;
     794        border-top: 0 none;
     795        border-width: 0 1px 1px;
     796        margin: 0 15px;
     797        padding: 8px 12px 12px;
     798        -moz-border-radius: 0 0 0 4px;
     799        -webkit-border-bottom-left-radius: 4px;
     800        -khtml-border-bottom-left-radius: 4px;
     801        border-bottom-left-radius: 4px;
     802}
     803
     804.metabox-prefs label {
     805        padding-right: 15px;
     806        white-space: nowrap;
     807        line-height: 30px;
     808}
     809
     810.metabox-prefs label input {
     811        margin: 0 5px 0 2px;
     812}
     813
     814.metabox-prefs label a {
     815        display: none;
     816}
     817
     818
     819/*------------------------------------------------------------------------------
     820  7.0 - Main Navigation (Left Menu)
     821------------------------------------------------------------------------------*/
    955822
    956823/* side admin menu */
     
    12001067}
    12011068
    1202 /* end side admin menu */
    1203 
    1204 /* comments/plugins bubble in menu */
    12051069#adminmenu #awaiting-mod,
    12061070#adminmenu span.update-plugins,
     
    12301094        display: none;
    12311095}
    1232 /* end menu stuff */
    1233 
    1234 /* comments bubble */
     1096
    12351097.post-com-count-wrapper {
    12361098        min-width: 22px;
     
    12861148}
    12871149
    1288 /* Admin Footer */
    1289 #footer {
    1290         margin-top: -46px;
    1291         border-top: 1px;
    1292         border-style: solid;
    1293 }
    1294 
    1295 #footer,
    1296 #footer a {
    1297         font-size: 12px;
    1298         font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
    1299         font-style: italic;
    1300 }
    1301 
    1302 #footer p {
    1303         margin: 0;
    1304         padding: 15px;
    1305         line-height: 15px;
    1306 }
    1307 
    1308 #footer a {
    1309         text-decoration: none;
    1310 }
    1311 
    1312 #footer a:hover {
    1313         text-decoration: underline;
    1314 }
    1315 
    1316 /* Tables used on comment.php and option/setting pages */
    1317 
    1318 .form-table {
    1319         border-collapse: collapse;
    1320         margin-top: 0.5em;
    1321         width: 100%;
    1322         margin-bottom: -8px;
    1323         clear: both;
    1324 }
    1325 
    1326 .form-table td {
    1327         margin-bottom: 9px;
    1328         padding: 8px 10px;
    1329         line-height: 20px;
    1330         font-size: 11px;
    1331 }
    1332 
    1333 .form-table th,
    1334 .form-wrap label {
    1335         font-weight: normal;
    1336         text-shadow: rgba(255,255,255,1) 0 1px 0;
    1337 }
    1338 
    1339 .form-table th {
    1340         vertical-align: top;
    1341         text-align: left;
    1342         padding: 10px;
    1343         width: 200px;
    1344 }
    1345 
    1346 .form-table th.th-full {
    1347         width: auto;
    1348 }
    1349 
    1350 .form-table div.color-option {
    1351         display: block;
    1352         clear: both;
    1353         margin-top: 12px;
    1354 }
    1355 
    1356 .form-table input.tog {
    1357         margin-top: 2px;
    1358         margin-right: 2px;
    1359         float: left;
    1360 }
    1361 
    1362 .form-table td p {
    1363         margin-top: 4px;
    1364 }
    1365 
    1366 .form-table table.color-palette {
    1367         vertical-align: bottom;
    1368         float: left;
    1369         margin: -12px 3px 11px;
    1370 }
    1371 
    1372 .form-table .color-palette td {
    1373         border-width: 1px 1px 0;
    1374         border-style: solid solid none;
    1375         height: 10px;
    1376         line-height: 20px;
    1377         width: 10px;
    1378 }
    1379 
    1380 input.large-text,
    1381 textarea.large-text {
    1382         width: 99%;
    1383 }
    1384 
    1385 input.regular-text,
    1386 #adduser .form-field input {
    1387         width: 25em;
    1388 }
    1389 
    1390 input.small-text {
    1391         width: 50px;
    1392 }
    1393 
    1394 #profile-page .form-table textarea {
    1395         width: 500px;
    1396         margin-bottom: 6px;
    1397 }
    1398 
    1399 #profile-page .form-table #rich_editing {
    1400         margin-right: 5px
    1401 }
    1402 
    1403 .form-table .pre {
    1404         padding: 8px;
    1405         margin: 0;
    1406 }
    1407 
    1408 .pre {
    1409         /* http://www.longren.org/2006/09/27/wrapping-text-inside-pre-tags/ */
    1410         white-space: pre-wrap; /* css-3 */
    1411         white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    1412         white-space: -pre-wrap; /* Opera 4-6 */
    1413         white-space: -o-pre-wrap; /* Opera 7 */
    1414         word-wrap: break-word; /* Internet Explorer 5.5+ */
    1415 }
    1416 
    1417 table.form-table td .updated {
    1418         font-size: 13px;
    1419 }
    1420 
    1421 /* divs for cats and tags pages */
    1422 
    1423 .form-wrap {
    1424         margin: 10px 0;
    1425         width: 97%;
    1426 }
    1427 
    1428 .form-wrap p,
    1429 .form-wrap label {
    1430         font-size: 11px;
    1431 }
    1432 
    1433 .form-wrap label {
    1434         display: block;
    1435         padding: 2px;
    1436         font-size: 12px;
    1437 }
    1438 
    1439 .form-field input,
    1440 .form-field textarea {
    1441         border-style: solid;
    1442         border-width: 1px;
    1443         width: 95%;
    1444 }
    1445 
    1446 p.description,
    1447 .form-wrap p {
    1448         margin: 2px 0 5px;
    1449 }
    1450 
    1451 p.help,
    1452 p.description,
    1453 span.description,
    1454 .form-wrap p {
    1455         font-size: 12px;
    1456         font-style: italic;
    1457         font-family: Verdana, Arial, "Bitstream Vera Sans", sans-serif;
    1458 }
    1459 
    1460 .form-wrap .form-field {
    1461         margin: 0 0 10px;
    1462         padding: 8px;
    1463 }
    1464 
    1465 .col-wrap h3 {
    1466         margin: 12px 0;
    1467         font-size: 1.1em;
    1468 }
    1469 
    1470 .col-wrap p.submit {
    1471         margin-top: -10px;
    1472 }
    1473 
    1474 .tagcloud {
    1475         width: 97%;
    1476         margin: 0 0 40px;
    1477         text-align: justify;
    1478 }
    1479 
    1480 .tagcloud h3 {
    1481         margin: 2px 0 12px;
    1482 }
    1483 
    1484 /* Post Screen */
    1485 #post-body #normal-sortables {
    1486         min-height: 50px;
    1487 }
    1488 
    1489 #post-body #advanced-sortables {
    1490         min-height: 20px;
    1491 }
    1492 
    1493 .postbox {
    1494         position: relative;
    1495         min-width: 255px;
    1496         width: 99.5%;
    1497 }
    1498 
    1499 #trackback_url {
    1500         width: 99%;
    1501 }
    1502 
    1503 #normal-sortables .postbox .submit {
    1504         background: transparent none;
    1505         border: 0 none;
    1506         float: right;
    1507         padding: 0 12px;
    1508         margin: 0;
    1509 }
    1510 
    1511 #normal-sortables .postbox #replyrow .submit {
    1512         float: none;
    1513         margin: 0;
    1514         padding: 3px 7px;
    1515 }
    1516 
    1517 #side-sortables .submitbox .submit input,
    1518 #side-sortables .submitbox .submit .preview,
    1519 #side-sortables .submitbox .submit a.preview:hover {
    1520         border: 0 none;
    1521 }
    1522 
    1523 #side-sortables .inside-submitbox .insidebox,
    1524 .stuffbox .insidebox {
    1525         margin: 11px 0;
    1526 }
    1527 
    1528 #side-sortables .comments-box,
    1529 #normal-sortables .comments-box {
    1530         border: 0 none;
    1531 }
    1532 
    1533 #side-sortables .comments-box thead th,
    1534 #normal-sortables .comments-box thead th {
    1535         background: transparent;
    1536         padding: 0 7px 4px;
    1537         font-style: italic;
    1538 }
    1539 
    1540 #commentsdiv img.waiting {
    1541         padding-left: 5px;
    1542         vertical-align: middle;
    1543 }
    1544 
    1545 #post-body .tagsdiv #newtag {
    1546         margin-right: 5px;
    1547         width: 16em;
    1548 }
    1549 
    1550 #side-sortables input#post_password {
    1551         width: 94%
    1552 }
    1553 
    1554 #side-sortables .tagsdiv #newtag {
    1555         width: 68%;
    1556 }
    1557 
    1558 #post-status-info {
    1559         border-width: 0 1px 1px;
    1560         border-style: none solid solid;
    1561         width: 100%;
    1562         -moz-border-radius: 0 0 6px 6px;
    1563         -webkit-border-bottom-left-radius: 6px;
    1564         -webkit-border-bottom-right-radius: 6px;
    1565         -khtml-border-bottom-left-radius: 6px;
    1566         -khtml-border-bottom-right-radius: 6px;
    1567         border-bottom-left-radius: 6px;
    1568         border-bottom-right-radius: 6px;
    1569 }
    1570 
    1571 #post-status-info td {
    1572         font-size: 11px;
    1573 }
    1574 
    1575 .autosave-info {
    1576         padding: 2px 15px 2px 2px;
    1577         text-align: right;
    1578 }
    1579 
    1580 #editorcontent #post-status-info {
    1581         border: none;
    1582 }
    1583 
    1584 #post-body .wp_themeSkin .mceStatusbar a.mceResize {
    1585         display: block;
    1586         background: transparent url(../images/resize.gif) no-repeat scroll right bottom;
    1587         width: 12px;
    1588         cursor: se-resize;
    1589         margin: 0 2px;
    1590         position: relative;
    1591         top: 22px;
    1592 }
    1593 
    1594 #linksubmitdiv div.inside,
    1595 div.inside {
    1596         padding: 0;
    1597         margin: 0;
    1598 }
    1599 
    1600 #comment-status-radio p {
    1601         margin: 3px 0 5px;
    1602 }
    1603 
    1604 #comment-status-radio input {
    1605         margin: 2px 3px 5px 0;
    1606         vertical-align: middle;
    1607 }
    1608 
    1609 #comment-status-radio label {
    1610         padding: 5px 0;
    1611 }
    1612 
    1613 .tagchecklist {
    1614         margin-left: 14px;
    1615         font-size: 12px;
    1616         overflow: auto;
    1617 }
    1618 
    1619 .tagchecklist strong {
    1620         margin-left: -8px;
    1621         position: absolute;
    1622 }
    1623 
    1624 .tagchecklist span {
    1625         margin-right: 25px;
    1626         display: block;
    1627         float: left;
    1628         font-size: 11px;
    1629         line-height: 1.8em;
    1630         white-space: nowrap;
    1631         cursor: default;
    1632 }
    1633 
    1634 .tagchecklist span a {
    1635         margin: 6px 0pt 0pt -9px;
    1636         cursor: pointer;
    1637         width: 10px;
    1638         height: 10px;
    1639         display: block;
    1640         float: left;
    1641         text-indent: -9999px;
     1150
     1151/*------------------------------------------------------------------------------
     1152  8.0 - Layout Blocks
     1153------------------------------------------------------------------------------*/
     1154
     1155body.wp-admin {
     1156        min-width: 785px;
     1157}
     1158
     1159.narrow {
     1160        width: 70%;
     1161        margin-bottom: 40px;
     1162}
     1163
     1164.narrow p {
     1165        line-height: 150%;
     1166}
     1167
     1168.widefat th,
     1169.widefat td {
    16421170        overflow: hidden;
    1643         position: absolute;
    1644 }
    1645 
    1646 .howto {
    1647         font-style: italic;
    1648         display: block;
    1649         font-family: Verdana, Arial, "Bitstream Vera Sans", sans-serif;
    1650 }
    1651 
    1652 .ac_results {
    1653         padding: 0;
    1654         margin: 0;
    1655         list-style: none;
    1656         position: absolute;
    1657         z-index: 10000;
    1658         display: none;
    1659         border-width: 1px;
    1660         border-style: solid;
    1661 }
    1662 
    1663 .ac_results li {
    1664         padding: 2px 5px;
    1665         white-space: nowrap;
    1666         text-align: left;
    1667 }
    1668 
    1669 .ac_over {
    1670         cursor: pointer;
    1671 }
    1672 
    1673 .ac_match {
    1674         text-decoration: underline;
    1675 }
    1676 
    1677 #poststuff h2 {
    1678         margin-top: 20px;
    1679         font-size: 1.5em;
    1680         margin-bottom: 15px;
    1681         padding: 0 0 3px;
    1682         clear: left;
     1171}
     1172
     1173.widefat td p {
     1174        margin: 2px 0 0.8em;
     1175}
     1176
     1177.widefat .column-comment p {
     1178        margin: 0.6em 0;
    16831179}
    16841180
     
    16921188}
    16931189
     1190.postbox-container {
     1191        float: left;
     1192        padding-right: 0.5%;
     1193}
     1194
     1195.postbox-container .meta-box-sortables {
     1196        min-height: 300px;
     1197}
     1198
    16941199.postbox .hndle span {
    16951200        padding: 6px 0;
     
    17031208        font-size: 11px;
    17041209        font-weight: normal;
    1705 }
    1706 
    1707 #dashboard-widgets .meta-box-sortables {
    1708         margin: 0 5px;
    17091210}
    17101211
     
    17191220        border-style: dashed;
    17201221        margin-bottom: 20px;
    1721 }
    1722 
    1723 #poststuff h3,
    1724 .metabox-holder h3 {
    1725         font-size: 12px;
    1726         font-weight: bold;
    1727         padding: 7px 9px;
    1728         margin: 0;
    1729         line-height: 1;
    17301222}
    17311223
     
    17561248}
    17571249
     1250/* TODO: Review this was a conflict - PJW */
    17581251.postbox.closed h3 {
    17591252        -moz-border-radius-bottomleft: 4px;
     
    17671260}
    17681261
     1262.form-table td p {
     1263        margin-top: 4px;
     1264}
     1265
     1266.form-table table.color-palette {
     1267        vertical-align: bottom;
     1268        float: left;
     1269        margin: -12px 3px 11px;
     1270}
     1271/* Conflict END */
     1272
    17691273.postbox table.form-table {
    17701274        margin-bottom: 0;
     
    17791283}
    17801284
    1781 #poststuff .inside,
    1782 #poststuff .inside p {
     1285.temp-border {
     1286        border: 1px dotted #ccc;
     1287}
     1288
     1289.columns-prefs label {
     1290        padding: 0 5px;
     1291}
     1292
     1293
     1294/*------------------------------------------------------------------------------
     1295  9.0 - Dashboard
     1296------------------------------------------------------------------------------*/
     1297
     1298#wpbody-content .metabox-holder {
     1299        padding-top: 10px;
     1300}
     1301
     1302#dashboard-widgets .meta-box-sortables {
     1303        margin: 0 5px;
     1304}
     1305
     1306#dashboard_recent_comments div.undo {
     1307        border-top-style: solid;
     1308        border-top-width: 1px;
     1309        margin: 0 -10px;
     1310        padding: 3px 8px;
    17831311        font-size: 11px;
    1784         margin: 6px 6px 8px;
    1785 }
    1786 
    1787 #poststuff .inside .submitbox p {
    1788         margin: 1em 0;
    1789 }
    1790 
    1791 #post-visibility-select {
    1792         line-height: 1.5em;
    1793         margin-top: 3px;
    1794 }
    1795 
    1796 #poststuff #submitdiv .inside {
     1312}
     1313
     1314#the-comment-list td.comment p.comment-author {
     1315        margin-top: 0;
     1316        margin-left: 0;
     1317}
     1318
     1319#the-comment-list p.comment-author img {
     1320        float: left;
     1321        margin-right: 8px;
     1322}
     1323
     1324#the-comment-list p.comment-author strong a {
     1325        border: none;
     1326}
     1327
     1328#the-comment-list td {
     1329        vertical-align: top;
     1330}
     1331
     1332#the-comment-list td.comment {
     1333        word-wrap: break-word;
     1334}
     1335
     1336#the-comment-list .check-column {
     1337        padding-top: 8px;
     1338}
     1339
     1340
     1341/*------------------------------------------------------------------------------
     1342  10.0 - List Posts (/Pages/etc)
     1343------------------------------------------------------------------------------*/
     1344
     1345table.fixed {
     1346        table-layout: fixed;
     1347}
     1348.fixed .column-rating,
     1349.fixed .column-visible {
     1350        width: 8%;
     1351}
     1352.fixed .column-date,
     1353.fixed .column-parent,
     1354.fixed .column-links {
     1355        width: 10%;
     1356}
     1357.fixed .column-response,
     1358.fixed .column-author,
     1359.fixed .column-categories,
     1360.fixed .column-tags,
     1361.fixed .column-rel,
     1362.fixed .column-role {
     1363        width: 15%;
     1364}
     1365.fixed .column-comments {
     1366        width: 4em;
     1367        padding: 8px 0;
     1368        text-align: left;
     1369}
     1370.fixed .column-comments .vers {
     1371        padding-left: 3px;
     1372}
     1373.fixed .column-comments a {
     1374        float: left;
     1375}
     1376.fixed .column-slug {
     1377        width: 25%;
     1378}
     1379.fixed .column-posts {
     1380        width: 10%;
     1381}
     1382.fixed .column-icon {
     1383        width: 80px;
     1384}
     1385#commentsdiv .fixed .column-author,
     1386#comments-form .fixed .column-author {
     1387        width: 20%;
     1388}
     1389
     1390.sorting-indicator {
     1391        display: none;
     1392        float: left;
     1393        width: 21px;
     1394        height: 4px;
     1395        margin-top: 5px;
     1396}
     1397th.sortable a, th.sorted-asc a, th.sorted-desc a {
     1398        float: left;
     1399}
     1400th.sorted-asc .sorting-indicator, th.sorted-desc:hover .sorting-indicator, th.sortable:hover .sorting-indicator {
     1401        display: block;
     1402        background: url(../images/sort_asc.gif) no-repeat scroll 0 0;
     1403}
     1404th.sorted-desc .sorting-indicator, th.sorted-asc:hover .sorting-indicator {
     1405        display: block;
     1406        background: url(../images/sort_desc.gif) no-repeat scroll 0 0;
     1407}
     1408
     1409/* Bulk Actions */
     1410
     1411.tablenav-pages a {
     1412        border-bottom-style: solid;
     1413        border-bottom-width: 2px;
     1414        font-weight: bold;
     1415        margin-right: 1px;
     1416        padding: 0 2px;
     1417}
     1418.tablenav-pages .current-page {
     1419        text-align: center;
     1420}
     1421.tablenav-pages .next-page {
     1422        margin-left: 2px;
     1423}
     1424
     1425.tablenav a.button-secondary {
     1426        display: block;
     1427        margin: 3px 8px 0 0;
     1428}
     1429
     1430.tablenav {
     1431        clear: both;
     1432        height: 30px;
     1433        margin: 6px 0 4px;
     1434        vertical-align: middle;
     1435}
     1436
     1437.tablenav .tablenav-pages {
     1438        float: right;
     1439        display: block;
     1440        cursor: default;
     1441        height: 30px;
     1442        line-height: 30px;
     1443        font-size: 11px;
     1444}
     1445
     1446.tablenav .tablenav-pages a,
     1447.tablenav-pages span.current  {
     1448        text-decoration: none;
     1449        border: none;
     1450        padding: 3px 6px;
     1451        border-width: 1px;
     1452        border-style: solid;
     1453        -moz-border-radius: 5px;
     1454        -khtml-border-radius: 5px;
     1455        -webkit-border-radius: 5px;
     1456        border-radius: 5px;
     1457}
     1458
     1459/* TODO: Review this was a conflict - font-family - PJW */
     1460.tablenav .displaying-num {
     1461        margin-right: 10px;
     1462        font-size: 12px;
     1463        font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
     1464        font-style: italic;
     1465        font-family: Verdana, Arial, "Bitstream Vera Sans", sans-serif;
     1466}
     1467
     1468.tablenav .actions {
     1469        padding: 2px 8px 0 0;
     1470}
     1471
     1472.tablenav .delete {
     1473        margin-right: 20px;
     1474}
     1475
     1476.view-switch {
     1477        float: right;
     1478        margin: 6px 8px 0;
     1479}
     1480
     1481.view-switch a {
     1482        text-decoration: none;
     1483}
     1484
     1485.filter {
     1486        float: left;
     1487        margin: -5px 0 0 10px;
     1488}
     1489
     1490.filter .subsubsub {
     1491        margin-left: -10px;
     1492        margin-top: 13px;
     1493}
     1494.screen-per-page {
     1495        width: 3em;
     1496}
     1497
     1498#posts-filter fieldset {
     1499        float: left;
     1500        margin: 0 1.5ex 1em 0;
     1501        padding: 0;
     1502}
     1503
     1504#posts-filter fieldset legend {
     1505        padding: 0 0 .2em 1px;
     1506}
     1507
     1508
     1509/*------------------------------------------------------------------------------
     1510  10.1 - Inline Editing
     1511------------------------------------------------------------------------------*/
     1512
     1513/*
     1514.quick-edit* is for Quick Edit
     1515.bulk-edit* is for Bulk Edit
     1516.inline-edit* is for everything
     1517*/
     1518
     1519/*      Layout */
     1520tr.inline-edit-row td {
     1521        padding: 0 0.5em;
     1522}
     1523
     1524#wpbody-content .inline-edit-row fieldset {
     1525        font-size: 12px;
     1526        float: left;
    17971527        margin: 0;
    1798 }
    1799 
    1800 #titlediv, #poststuff .postarea {
    1801         margin-bottom: 20px;
    1802 }
     1528        padding: 0;
     1529        width: 100%;
     1530}
     1531
     1532#wpbody-content .inline-edit-row fieldset .inline-edit-col {
     1533        padding: 0 0.5em;
     1534}
     1535
     1536#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
     1537        border-width: 0 0 0 1px;
     1538        border-style: none none none solid;
     1539}
     1540
     1541#wpbody-content .quick-edit-row-post .inline-edit-col-left {
     1542        width: 40%;
     1543}
     1544
     1545#wpbody-content .quick-edit-row-post .inline-edit-col-right {
     1546        width: 39%;
     1547}
     1548
     1549#wpbody-content .inline-edit-row-post .inline-edit-col-center {
     1550        width: 20%;
     1551}
     1552
     1553#wpbody-content .quick-edit-row-page .inline-edit-col-left {
     1554        width: 50%;
     1555}
     1556
     1557#wpbody-content .quick-edit-row-page .inline-edit-col-right,
     1558#wpbody-content .bulk-edit-row-post .inline-edit-col-right {
     1559        width: 49%;
     1560}
     1561
     1562#wpbody-content .bulk-edit-row .inline-edit-col-left {
     1563        width: 30%;
     1564}
     1565
     1566#wpbody-content .bulk-edit-row-page .inline-edit-col-right {
     1567        width: 69%;
     1568}
     1569
     1570#wpbody-content .bulk-edit-row .inline-edit-col-bottom {
     1571        float: right;
     1572        width: 69%;
     1573}
     1574
     1575#wpbody-content .inline-edit-row-page .inline-edit-col-right,
     1576#owpbody-content .bulk-edit-row-post .inline-edit-col-right {
     1577        margin-top: 27px;
     1578}
     1579
     1580.inline-edit-row fieldset .inline-edit-group {
     1581        clear: both;
     1582}
     1583
     1584.inline-edit-row fieldset .inline-edit-group:after {
     1585        content: ".";
     1586        display: block;
     1587        height: 0;
     1588        clear: both;
     1589        visibility: hidden;
     1590}
     1591
     1592.inline-edit-row p.submit {
     1593        clear: both;
     1594        padding: 0.5em;
     1595        margin: 0.5em 0 0;
     1596}
     1597
     1598.inline-edit-row span.error {
     1599        line-height: 22px;
     1600        margin: 0 15px;
     1601        padding: 3px 5px;
     1602}
     1603
     1604/*      Positioning */
     1605.inline-edit-row h4 {
     1606        margin: .2em 0;
     1607        padding: 0;
     1608        line-height: 23px;
     1609}
     1610.inline-edit-row fieldset span.title,
     1611.inline-edit-row fieldset span.checkbox-title {
     1612        margin: 0;
     1613        padding: 0;
     1614        line-height: 27px;
     1615}
     1616
     1617.inline-edit-row fieldset label,
     1618.inline-edit-row fieldset span.inline-edit-categories-label {
     1619        display: block;
     1620        margin: .2em 0;
     1621}
     1622
     1623.inline-edit-row fieldset label.inline-edit-tags {
     1624        margin-top: 0;
     1625}
     1626
     1627.inline-edit-row fieldset label.inline-edit-tags span.title {
     1628        margin: .2em 0;
     1629}
     1630
     1631.inline-edit-row fieldset label span.title {
     1632        display: block;
     1633        float: left;
     1634        width: 5em;
     1635}
     1636
     1637.inline-edit-row fieldset label span.input-text-wrap {
     1638        display: block;
     1639        margin-left: 5em;
     1640}
     1641
     1642/* TODO: Review this was a conflict - PJW */
     1643.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
     1644        width: auto;
     1645        padding-right: 0.5em;
     1646}
     1647.howto {
     1648        font-style: italic;
     1649        display: block;
     1650        font-family: Verdana, Arial, "Bitstream Vera Sans", sans-serif;
     1651}
     1652/* END Conflict */
     1653
     1654.inline-edit-row .input-text-wrap input[type=text] {
     1655        width: 100%;
     1656}
     1657
     1658.inline-edit-row fieldset label input[type=checkbox] {
     1659        vertical-align: text-bottom;
     1660}
     1661
     1662.inline-edit-row fieldset label textarea {
     1663        width: 100%;
     1664        height: 4em;
     1665}
     1666
     1667#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
     1668        max-width: 50%;
     1669}
     1670
     1671#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
     1672        margin-right: 0.5em
     1673}
     1674
     1675/*      Styling */
     1676.inline-edit-row h4 {
     1677        text-transform: uppercase;
     1678}
     1679
     1680.inline-edit-row fieldset span.title,
     1681.inline-edit-row fieldset span.checkbox-title {
     1682        font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
     1683        font-style: italic;
     1684        line-height: 1.8em;
     1685}
     1686
     1687/*      Specific Elements */
     1688.inline-edit-row fieldset input[type="text"],
     1689.inline-edit-row fieldset textarea {
     1690        border-style: solid;
     1691        border-width: 1px;
     1692}
     1693
     1694.inline-edit-row fieldset .inline-edit-date {
     1695        float: left;
     1696}
     1697
     1698.inline-edit-row fieldset input[name=jj],
     1699.inline-edit-row fieldset input[name=hh],
     1700.inline-edit-row fieldset input[name=mn] {
     1701        font-size: 12px;
     1702        width: 2.1em;
     1703}
     1704
     1705.inline-edit-row fieldset input[name=aa] {
     1706        font-size: 12px;
     1707        width: 3.5em;
     1708}
     1709
     1710.inline-edit-row fieldset label input.inline-edit-password-input {
     1711        width: 8em;
     1712}
     1713
     1714.inline-edit-row .catshow,
     1715.inline-edit-row .cathide {
     1716        cursor: pointer;
     1717}
     1718
     1719ul.cat-checklist {
     1720        height: 12em;
     1721        border-style: solid;
     1722        border-width: 1px;
     1723        overflow-y: scroll;
     1724        padding: 0 5px;
     1725        margin: 0;
     1726}
     1727
     1728#bulk-titles {
     1729        display: block;
     1730        height: 12em;
     1731        border-style: solid;
     1732        border-width: 1px;
     1733        overflow-y: scroll;
     1734        padding: 0 5px;
     1735        margin: 0 0 5px;
     1736}
     1737
     1738.inline-edit-row fieldset ul.cat-checklist li,
     1739.inline-edit-row fieldset ul.cat-checklist input {
     1740        margin: 0;
     1741}
     1742
     1743.inline-edit-row fieldset ul.cat-checklist label,
     1744.inline-edit-row .catshow,
     1745.inline-edit-row .cathide,
     1746.inline-edit-row #bulk-titles div {
     1747        font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
     1748        font-style: normal;
     1749        font-size: 11px;
     1750}
     1751
     1752table .inline-edit-row fieldset ul.cat-hover {
     1753        height: auto;
     1754        max-height: 30em;
     1755        overflow-y: auto;
     1756        position: absolute;
     1757}
     1758
     1759.inline-edit-row fieldset label input.inline-edit-menu-order-input {
     1760        width: 3em;
     1761}
     1762
     1763.inline-edit-row fieldset label input.inline-edit-slug-input {
     1764        width: 75%;
     1765}
     1766
     1767.quick-edit-row-post fieldset label.inline-edit-status {
     1768        float: left;
     1769}
     1770
     1771#bulk-titles {
     1772        line-height: 140%;
     1773}
     1774#bulk-titles div {
     1775        margin: 0.2em 0.3em;
     1776}
     1777
     1778#bulk-titles div a {
     1779        cursor: pointer;
     1780        display: block;
     1781        float: left;
     1782        height: 10px;
     1783        margin: 3px 3px 0 -2px;
     1784        overflow: hidden;
     1785        position: relative;
     1786        text-indent: -9999px;
     1787        width: 10px;
     1788}
     1789
     1790
     1791/*------------------------------------------------------------------------------
     1792  11.0 - Write/Edit Post Screen
     1793------------------------------------------------------------------------------*/
    18031794
    18041795#titlediv {
     
    19711962}
    19721963
    1973 /* Categories */
    1974 
    1975 .category-adder {
    1976         margin-left: 120px;
    1977         padding: 4px 0;
    1978 }
    1979 
    1980 .category-adder h4 {
    1981         margin: 0 0 8px;
    1982 }
    1983 
    1984 #side-sortables .category-adder {
    1985         margin: 0;
    1986 }
    1987 
    1988 #post-body .category-add input, .category-add select {
    1989         width: 30%;
    1990 }
     1964/* Post Screen */
     1965#post-body #normal-sortables {
     1966        min-height: 50px;
     1967}
     1968
     1969#post-body #advanced-sortables {
     1970        min-height: 20px;
     1971}
     1972
     1973.postbox {
     1974        position: relative;
     1975        min-width: 255px;
     1976        width: 99.5%;
     1977}
     1978
     1979#trackback_url {
     1980        width: 99%;
     1981}
     1982
     1983/* TODO: Review this was a conflict - PJW */
     1984#normal-sortables .postbox .submit {
     1985        background: transparent none;
     1986        border: 0 none;
     1987        float: right;
     1988        padding: 0 12px;
     1989}
     1990/* END */
    19911991
    19921992#side-sortables .category-add input {
     
    20962096}
    20972097
    2098 #front-page-warning,
    2099 #front-static-pages ul,
    2100 .inline-editor ul.cat-checklist ul,
    2101 .categorydiv ul.categorychecklist ul,
    2102 .customlinkdiv ul.categorychecklist ul,
    2103 .posttypediv ul.categorychecklist ul,
    2104 .taxonomydiv ul.categorychecklist ul,
    2105 #linkcategorydiv ul.categorychecklist ul {
    2106         margin-left: 18px;
    2107 }
    2108 
    2109 ul.categorychecklist li {
     2098/* TODO: Review this was a conflict - PJW */
     2099#normal-sortables .postbox #replyrow .submit {
     2100        float: none;
    21102101        margin: 0;
    2111         padding: 0;
    2112         line-height: 19px;
    2113         word-wrap: break-word;
    2114 }
    2115 
    2116 .category-adder h4 {
    2117         margin-top: 4px;
    2118         margin-bottom: 0px;
    2119 }
    2120 
     2102        padding: 3px 7px;
     2103}
     2104
     2105#side-sortables .submitbox .submit input,
     2106#side-sortables .submitbox .submit .preview,
     2107#side-sortables .submitbox .submit a.preview:hover {
     2108        border: 0 none;
     2109}
     2110
     2111#side-sortables .inside-submitbox .insidebox,
     2112.stuffbox .insidebox {
     2113        margin: 11px 0;
     2114}
     2115
     2116#side-sortables .comments-box,
     2117#normal-sortables .comments-box {
     2118        border: 0 none;
     2119}
    21212120ul.category-tabs,
    21222121ul.add-menu-item-tabs,
    21232122ul.wp-tab-bar {
    21242123        margin-top: 12px;
     2124}
     2125/* END Conflict */
     2126
     2127/* TODO: Review this was a conflict - PJW */
     2128#side-sortables .comments-box thead th,
     2129#normal-sortables .comments-box thead th {
     2130        background: transparent;
     2131        padding: 0 7px 4px;
     2132        font-style: italic;
    21252133}
    21262134
     
    21312139        border-width: 1px 1px 0;
    21322140}
     2141
     2142#commentsdiv img.waiting {
     2143        padding-left: 5px;
     2144}
     2145/* END Conflcit */
    21332146
    21342147#post-body .category-tabs li.tabs,
     
    22032216}
    22042217
     2218/* TODO: Review this was a conflict - PJW */
    22052219.defaultavatarpicker .avatar {
    22062220        margin: 2px 0;
     
    22082222}
    22092223
    2210 body.wp-admin {
    2211         min-width: 785px;
    2212 }
    2213 
    2214 .view-switch {
    2215         float: right;
    2216         margin: 6px 8px 0;
    2217 }
    2218 
    2219 .view-switch a {
    2220         text-decoration: none;
    2221 }
    2222 
    2223 .filter {
    2224         float: left;
    2225         margin: -5px 0 0 10px;
    2226 }
    2227 
    2228 .filter .subsubsub {
    2229         margin-left: -10px;
    2230         margin-top: 13px;
    2231 }
    2232 
    2233 #the-comment-list td.comment p.comment-author {
    2234         margin-top: 0;
    2235         margin-left: 0;
    2236 }
    2237 
    2238 #the-comment-list p.comment-author img {
    2239         float: left;
    2240         margin-right: 8px;
    2241 }
    2242 
    2243 #the-comment-list p.comment-author strong a {
     2224#post-body .tagsdiv #newtag {
     2225        margin-right: 5px;
     2226        width: 16em;
     2227}
     2228
     2229#side-sortables input#post_password {
     2230        width: 94%
     2231}
     2232
     2233#side-sortables .tagsdiv #newtag {
     2234        width: 68%;
     2235}
     2236
     2237#post-status-info {
     2238        border-width: 0 1px 1px;
     2239        border-style: none solid solid;
     2240        width: 100%;
     2241        -moz-border-radius: 0 0 6px 6px;
     2242        -webkit-border-bottom-left-radius: 6px;
     2243        -webkit-border-bottom-right-radius: 6px;
     2244        -khtml-border-bottom-left-radius: 6px;
     2245        -khtml-border-bottom-right-radius: 6px;
     2246        border-bottom-left-radius: 6px;
     2247        border-bottom-right-radius: 6px;
     2248}
     2249
     2250#post-status-info td {
     2251        font-size: 11px;
     2252}
     2253
     2254.autosave-info {
     2255        padding: 2px 15px 2px 2px;
     2256        text-align: right;
     2257}
     2258
     2259#editorcontent #post-status-info {
    22442260        border: none;
    22452261}
    22462262
    2247 #the-comment-list td {
    2248         vertical-align: top;
    2249 }
    2250 
    2251 #the-comment-list td.comment {
    2252         word-wrap: break-word;
    2253 }
    2254 
    2255 #the-comment-list .check-column {
    2256         padding-top: 8px;
    2257 }
    2258 
    2259 #templateside ul li a {
    2260         text-decoration: none;
    2261 }
    2262 
    2263 .indicator-hint {
    2264         padding-top: 8px;
    2265 }
    2266 
    2267 #display_name {
    2268         width: 15em;
    2269 }
    2270 
    2271 .tablenav .delete {
    2272         margin-right: 20px;
    2273 }
    2274 
    2275 td.action-links,
    2276 th.action-links {
    2277         text-align: right;
    2278 }
    2279 
    2280 /* Diff */
    2281 
    2282 table.diff {
    2283         width: 100%;
    2284 }
    2285 
    2286 table.diff col.content {
    2287         width: 50%;
    2288 }
    2289 
    2290 table.diff tr {
    2291         background-color: transparent;
    2292 }
    2293 
    2294 table.diff td, table.diff th {
    2295         padding: .5em;
    2296         font-family: Consolas, Monaco, Courier, monospace;
    2297         border: none;
    2298 }
    2299 
    2300 table.diff .diff-deletedline del, table.diff .diff-addedline ins {
    2301         text-decoration: none;
     2263#post-body .wp_themeSkin .mceStatusbar a.mceResize {
     2264        display: block;
     2265        background: transparent url(../images/resize.gif) no-repeat scroll right bottom;
     2266        width: 12px;
     2267        cursor: se-resize;
     2268        margin: 0 2px;
     2269        position: relative;
     2270        top: 22px;
    23022271}
    23032272
     
    23072276}
    23082277
    2309 fieldset {
    2310         border: 0;
     2278#timestampdiv select {
     2279        height: 20px;
     2280        line-height: 14px;
    23112281        padding: 0;
    2312         margin: 0;
    2313 }
    2314 
    2315 .tool-box {
    2316         margin: 15px 0 35px;
    2317 }
    2318 
    2319 .tool-box .buttons {
    2320         margin: 15px 0;
    2321 }
    2322 
    2323 .tool-box .title {
    2324         margin: 8px 0;
    2325         font: 18px/24px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
    2326 }
    2327 
    2328 .pressthis a {
    2329         font-size: 1.2em;
    2330 }
    2331 
    2332 #wp_editbtns,
    2333 #wp_gallerybtns {
    2334         padding: 2px;
    2335         position: absolute;
    2336         display: none;
    2337         z-index: 999998;
    2338 }
    2339 
    2340 #wp_editimgbtn,
    2341 #wp_delimgbtn,
    2342 #wp_editgallery,
    2343 #wp_delgallery {
    2344         margin: 2px;
    2345         padding: 2px;
     2282        vertical-align: top;
     2283}
     2284
     2285#jj, #hh, #mn {
     2286        width: 2em;
     2287        padding: 1px;
     2288        font-size: 12px;
     2289}
     2290
     2291#aa {
     2292        width: 3.4em;
     2293        padding: 1px;
     2294        font-size: 12px;
     2295}
     2296
     2297.curtime #timestamp {
     2298        background-repeat: no-repeat;
     2299        background-position: left top;
     2300        padding-left: 18px;
     2301}
     2302
     2303#timestampdiv {
     2304        padding-top: 5px;
     2305        line-height: 23px;
     2306}
     2307
     2308#timestampdiv p {
     2309        margin: 8px 0 6px;
     2310}
     2311
     2312#timestampdiv input {
     2313        border-width: 1px;
     2314        border-style: solid;
     2315}
     2316
     2317
     2318/*------------------------------------------------------------------------------
     2319  11.1 - Custom Fields
     2320------------------------------------------------------------------------------*/
     2321
     2322#postcustomstuff table,
     2323#postcustomstuff input,
     2324#postcustomstuff textarea {
    23462325        border-width: 1px;
    23472326        border-style: solid;
     
    23522331}
    23532332
    2354 .settings-toggle {
    2355         text-align: right;
    2356         margin: 5px 7px 15px 0;
    2357         font-size: 12px;
    2358 }
    2359 
    2360 .settings-toggle h3 {
     2333#postcustomstuff .updatemeta,
     2334#postcustomstuff .deletemeta {
     2335        margin: auto;
     2336}
     2337
     2338#postcustomstuff thead th {
     2339        padding: 5px 8px 8px;
     2340}
     2341
     2342#postcustom #postcustomstuff .submit {
     2343        border: 0 none;
     2344        float: none;
     2345        padding: 5px 8px;
     2346}
     2347
     2348#side-sortables #postcustom #postcustomstuff .submit {
     2349        padding: 0 5px;
     2350}
     2351
     2352#side-sortables #postcustom #postcustomstuff td.left input {
     2353        margin: 3px 3px 0;
     2354}
     2355
     2356#side-sortables #postcustom #postcustomstuff #the-list textarea {
     2357        height: 85px;
     2358        margin: 3px;
     2359}
     2360
     2361#postcustomstuff table {
    23612362        margin: 0;
    2362 }
    2363 
    2364 #timestampdiv select {
    2365         height: 20px;
    2366         line-height: 14px;
    2367         padding: 0;
    2368         vertical-align: top;
    2369 }
    2370 
    2371 #jj, #hh, #mn {
    2372         width: 2em;
    2373         padding: 1px;
    2374         font-size: 12px;
    2375 }
    2376 
    2377 #aa {
    2378         width: 3.4em;
    2379         padding: 1px;
    2380         font-size: 12px;
    2381 }
    2382 
    2383 .curtime #timestamp {
    2384         background-repeat: no-repeat;
    2385         background-position: left top;
    2386         padding-left: 18px;
    2387 }
    2388 
    2389 #timestampdiv {
    2390         padding-top: 5px;
    2391         line-height: 23px;
    2392 }
    2393 
    2394 #timestampdiv p {
    2395         margin: 8px 0 6px;
    2396 }
    2397 
    2398 #timestampdiv input {
     2363        width: 100%;
    23992364        border-width: 1px;
    24002365        border-style: solid;
    2401 }
    2402 
    2403 /* media popup 0819 */
    2404 #sidemenu {
    2405         margin: -30px 15px 0 315px;
    2406         list-style: none;
    2407         position: relative;
    2408         float: right;
    2409         padding-left: 10px;
    2410         font-size: 12px;
    2411 }
    2412 
    2413 #sidemenu a {
    2414         padding: 0 7px;
    2415         display: block;
    2416         float: left;
    2417         line-height: 28px;
    2418         border-top-width: 1px;
    2419         border-top-style: solid;
    2420         border-bottom-width: 1px;
    2421         border-bottom-style: solid;
    2422 }
    2423 
    2424 #sidemenu li {
    2425         display: inline;
    2426         line-height: 200%;
    2427         list-style: none;
    2428         text-align: center;
    2429         white-space: nowrap;
    2430         margin: 0;
    2431         padding: 0;
    2432 }
    2433 
    2434 #sidemenu a.current {
    2435         font-weight: normal;
    2436         padding-left: 6px;
    2437         padding-right: 6px;
    2438         -moz-border-radius: 4px 4px 0 0;
    2439         -webkit-border-top-left-radius: 4px;
    2440         -webkit-border-top-right-radius: 4px;
    2441         -khtml-border-top-left-radius: 4px;
    2442         -khtml-border-top-right-radius: 4px;
    2443         border-top-left-radius: 4px;
    2444         border-top-right-radius: 4px;
    2445         border-width: 1px;
    2446         border-style: solid;
    2447 }
    2448 
    2449 #sidemenu {
    2450         margin: -30px 15px 0 315px;
    2451         list-style: none;
    2452         position: relative;
    2453         float: right;
    2454         padding-left: 10px;
    2455         font-size: 12px;
    2456 }
    2457 
    2458 #sidemenu a {
    2459         padding: 0 7px;
    2460         display: block;
    2461         float: left;
    2462         line-height: 28px;
    2463         border-top-width: 1px;
    2464         border-top-style: solid;
    2465         border-bottom-width: 1px;
    2466         border-bottom-style: solid;
    2467 }
    2468 
    2469 #sidemenu li a .count-0 {
    2470         display: none;
    2471 }
    2472 
    2473 /* reply to comments */
    2474 #replyrow {
    2475         font-size: 11px;
    2476 }
    2477 
    2478 #replyrow input {
    2479         border-width: 1px;
    2480         border-style: solid;
    2481 }
    2482 
    2483 #replyrow td {
    2484         padding: 2px;
    2485 }
    2486 
    2487 #replyrow #editorcontainer {
    2488         border: 0 none;
    2489 }
    2490 
    2491 #replysubmit {
    2492         margin: 0;
    2493         padding: 3px 7px;
    2494 }
    2495 
    2496 #replysubmit img.waiting,
    2497 .inline-edit-save img.waiting {
    2498         padding: 4px 10px 0;
     2366        border-spacing: 0;
     2367}
     2368
     2369#postcustomstuff table input,
     2370#postcustomstuff table select,
     2371#postcustomstuff table textarea {
     2372        width: 95%;
     2373        margin: 8px 0 8px 8px;
     2374}
     2375
     2376#postcustomstuff th.left,
     2377#postcustomstuff td.left {
     2378        width: 38%;
     2379}
     2380
     2381#postcustomstuff .submit input {
     2382        width: auto;
     2383}
     2384
     2385#postcustomstuff #newmeta .submit {
     2386        padding: 0 8px;
     2387}
     2388
     2389#postcustomstuff table #addmetasub {
     2390        width: auto;
     2391}
     2392
     2393#postcustomstuff #newmetaleft {
    24992394        vertical-align: top;
    2500         float: right;
    2501 }
    2502 
    2503 #replysubmit .button {
    2504         margin-right: 5px;
    2505 }
    2506 
    2507 #replyrow #editor-toolbar {
    2508         display: none;
    2509 }
    2510 
    2511 #replyhead {
    2512         font-size: 12px;
    2513         font-weight: bold;
    2514         padding: 2px 10px 4px;
    2515 }
    2516 
    2517 #edithead .inside {
    2518         float: left;
    2519         padding: 3px 0 2px 5px;
    2520         margin: 0;
    2521         text-align: center;
    2522         font-size: 11px;
    2523 }
    2524 
    2525 #edithead .inside input {
    2526         width: 180px;
    2527         font-size: 11px;
    2528 }
    2529 
    2530 #edithead label {
    2531         padding: 2px 0;
    2532 }
    2533 
    2534 #replycontainer {
    2535         padding: 5px;
    2536         border: 0 none;
    2537         height: 120px;
    2538         overflow: hidden;
    2539         position: relative;
    2540 }
    2541 
    2542 #replycontent {
    2543         resize: none;
    2544         margin: 0;
     2395}
     2396
     2397#postcustomstuff #newmetaleft a {
     2398        padding: 0 10px;
     2399        text-decoration: none;
     2400}
     2401
     2402
     2403/*------------------------------------------------------------------------------
     2404  11.2 - Post Revisions
     2405------------------------------------------------------------------------------*/
     2406
     2407table.diff {
    25452408        width: 100%;
    2546         height: 100%;
    2547         padding: 0;
    2548         line-height: 150%;
    2549         border: 0 none;
    2550         outline: none;
    2551         font-size: 12px;
    2552 }
    2553 
    2554 #replyrow #ed_reply_toolbar {
    2555         margin: 0;
    2556         padding: 2px 3px;
    2557 }
    2558 
    2559 /* show/hide settings */
    2560 #screen-meta {
    2561         position: relative;
    2562         clear: both;
    2563 }
    2564 
    2565 #screen-meta-links {
    2566         margin: 0 18px 0 0;
    2567 }
    2568 
    2569 #screen-meta .screen-reader-text {
    2570         visibility: hidden;
    2571 }
    2572 
     2409}
     2410
     2411table.diff col.content {
     2412        width: 50%;
     2413}
     2414
     2415table.diff tr {
     2416        background-color: transparent;
     2417}
     2418
     2419table.diff td, table.diff th {
     2420        padding: .5em;
     2421        font-family: Consolas, Monaco, Courier, monospace;
     2422        border: none;
     2423}
     2424
     2425table.diff .diff-deletedline del, table.diff .diff-addedline ins {
     2426        text-decoration: none;
     2427}
     2428
     2429/* TODO: Review this was a conflict - PJW */
    25732430#screen-options-link-wrap,
    25742431#contextual-help-link-wrap {
     
    25842441        -webkit-border-bottom-right-radius: 3px;
    25852442}
    2586 
    2587 #contextual-help-wrap li {
    2588         list-style-type: disc;
    2589         margin-left: 18px;
    2590 }
    2591 
    2592 #screen-meta a.show-settings {
    2593         text-decoration: none;
    2594         z-index: 1;
    2595         padding: 0 16px 0 6px;
    2596         height: 22px;
    2597         line-height: 22px;
    2598         font-size: 10px;
    2599         display: block;
    2600         background-repeat: no-repeat;
    2601         background-position: right bottom;
     2443/* END */
     2444
     2445/*------------------------------------------------------------------------------
     2446  12.0 - Categories
     2447------------------------------------------------------------------------------*/
     2448
     2449.category-adder {
     2450        margin-left: 120px;
     2451        padding: 4px 0;
     2452}
     2453
     2454/* TODO: Review this was a conflict - PJW */
     2455.category-adder h4 {
     2456        margin: 0 0 8px;
    26022457}
    26032458
     
    26062461        background-position: top right;
    26072462}
    2608 
    2609 #screen-meta a.show-settings:hover {
    2610         text-decoration: none;
    2611 }
    2612 
    2613 #screen-options-wrap h5,
    2614 #contextual-help-wrap h5 {
    2615         margin: 8px 0;
    2616         font-size: 13px;
     2463/* END */
     2464
     2465#side-sortables .category-adder {
     2466        margin: 0;
     2467}
     2468
     2469#post-body .category-add input, .category-add select {
     2470        width: 30%;
     2471}
     2472
     2473/* TODO: Review this was a conflict - PJW */
     2474#side-sortables .category-add input {
     2475        width: 94%;
    26172476}
    26182477
     
    26292488        border-radius: 0 0 4px 4px;
    26302489}
    2631 
    2632 .metabox-prefs label {
    2633         padding-right: 15px;
    2634         white-space: nowrap;
    2635         line-height: 30px;
    2636 }
    2637 
    2638 .metabox-prefs label input {
    2639         margin: 0 5px 0 2px;
    2640 }
    2641 
    2642 .metabox-prefs label a {
    2643         display: none;
    2644 }
    2645 
    2646 /* Inline Editor
    2647         .quick-edit* is for Quick Edit
    2648         .bulk-edit* is for Bulk Edit
    2649         .inline-edit* is for everything
    2650 */
    2651 /*      Layout */
    2652 tr.inline-edit-row td {
    2653         padding: 0 0.5em;
    2654 }
    2655 
    2656 #wpbody-content .inline-edit-row fieldset {
    2657         font-size: 12px;
     2490/* END */
     2491
     2492#side-sortables .category-add select {
     2493        width: 100%;
     2494}
     2495
     2496#side-sortables .category-add input.category-add-sumbit, #post-body .category-add input.category-add input.category-add-sumbit {
     2497        width: auto;
     2498}
     2499
     2500#post-body ul.category-tabs,
     2501#post-body ul.add-menu-item-tabs {
    26582502        float: left;
     2503        width: 120px;
     2504        text-align: right;
     2505        /* Negative margin for the sake of those without JS: all tabs display */
     2506        margin: 0 -120px 0 5px;
     2507        padding: 0;
     2508}
     2509
     2510#post-body ul.category-tabs li,
     2511#post-body ul.add-menu-item-tabs li {
     2512        padding: 8px;
     2513}
     2514
     2515#post-body ul.category-tabs li.tabs,
     2516#post-body ul.add-menu-item-tabs li.tabs {
     2517        -moz-border-radius: 3px 0 0 3px;
     2518        -webkit-border-top-left-radius: 3px;
     2519        -webkit-border-bottom-left-radius: 3px;
     2520        -khtml-border-top-left-radius: 3px;
     2521        -khtml-border-bottom-left-radius: 3px;
     2522        border-top-left-radius: 3px;
     2523        border-bottom-left-radius: 3px;
     2524}
     2525
     2526#post-body ul.category-tabs li.tabs a,
     2527#post-body ul.add-menu-item-tabs li.tabs a {
     2528        font-weight: bold;
     2529        text-decoration: none;
     2530}
     2531
     2532.categorydiv div.tabs-panel,
     2533.customlinkdiv div.tabs-panel,
     2534.posttypediv div.tabs-panel,
     2535.taxonomydiv div.tabs-panel,
     2536#linkcategorydiv div.tabs-panel {
     2537        height: 200px;
     2538        overflow: auto;
     2539        padding: 0.5em 0.9em;
     2540        border-style: solid;
     2541        border-width: 1px;
     2542}
     2543
     2544.nav-menus-php .customlinkdiv div.tabs-panel,
     2545.nav-menus-php .posttypediv div.tabs-panel,
     2546.nav-menus-php .taxonomydiv div.tabs-panel {
     2547        height: auto;
     2548        max-height: 205px;
     2549}
     2550
     2551div.tabs-panel-active {
     2552        display:block;
     2553}
     2554
     2555div.tabs-panel-inactive {
     2556        display:none;
     2557}
     2558
     2559#post-body .categorydiv div.tabs-panel,
     2560.taxonomy div.tabs-panel,
     2561#post-body #linkcategorydiv div.tabs-panel {
     2562        margin: 0 5px 0 125px;
     2563}
     2564
     2565#side-sortables .category-tabs li,
     2566#side-sortables .add-menu-item-tabs li {
     2567        display: inline;
     2568}
     2569
     2570#side-sortables .category-tabs a,
     2571#side-sortables .add-menu-item-tabs a {
     2572        text-decoration: none;
     2573}
     2574
     2575#side-sortables .category-tabs,
     2576#side-sortables .add-menu-item-tabs {
     2577        margin-bottom: 3px;
     2578}
     2579
     2580.categorydiv ul,
     2581.customlinkdiv ul,
     2582.posttypediv ul,
     2583.taxonomydiv ul,
     2584#linkcategorydiv ul {
     2585        list-style: none;
     2586        padding: 0;
     2587        margin: 0;
     2588}
     2589
     2590#front-page-warning,
     2591#front-static-pages ul,
     2592.inline-editor ul.cat-checklist ul,
     2593.categorydiv ul.categorychecklist ul,
     2594.customlinkdiv ul.categorychecklist ul,
     2595.posttypediv ul.categorychecklist ul,
     2596.taxonomydiv ul.categorychecklist ul,
     2597#linkcategorydiv ul.categorychecklist ul {
     2598        margin-left: 18px;
     2599}
     2600
     2601ul.categorychecklist li {
    26592602        margin: 0;
    26602603        padding: 0;
    2661         width: 100%;
    2662 }
    2663 
    2664 #wpbody-content .inline-edit-row fieldset .inline-edit-col {
    2665         padding: 0 0.5em;
    2666 }
    2667 
    2668 #wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
    2669         border-width: 0 0 0 1px;
    2670         border-style: none none none solid;
    2671 }
    2672 
    2673 #wpbody-content .quick-edit-row-post .inline-edit-col-left {
    2674         width: 40%;
    2675 }
    2676 
    2677 #wpbody-content .quick-edit-row-post .inline-edit-col-right {
    2678         width: 39%;
    2679 }
    2680 
    2681 #wpbody-content .inline-edit-row-post .inline-edit-col-center {
    2682         width: 20%;
    2683 }
    2684 
    2685 #wpbody-content .quick-edit-row-page .inline-edit-col-left {
    2686         width: 50%;
    2687 }
    2688 
    2689 #wpbody-content .quick-edit-row-page .inline-edit-col-right,
    2690 #wpbody-content .bulk-edit-row-post .inline-edit-col-right {
    2691         width: 49%;
    2692 }
    2693 
    2694 #wpbody-content .bulk-edit-row .inline-edit-col-left {
    2695         width: 30%;
    2696 }
    2697 
    2698 #wpbody-content .bulk-edit-row-page .inline-edit-col-right {
    2699         width: 69%;
    2700 }
    2701 
    2702 #wpbody-content .bulk-edit-row .inline-edit-col-bottom {
    2703         float: right;
    2704         width: 69%;
    2705 }
    2706 
    2707 #wpbody-content .inline-edit-row-page .inline-edit-col-right,
    2708 #owpbody-content .bulk-edit-row-post .inline-edit-col-right {
    2709         margin-top: 27px;
    2710 }
    2711 
    2712 .inline-edit-row fieldset .inline-edit-group {
    2713         clear: both;
    2714 }
    2715 
    2716 .inline-edit-row fieldset .inline-edit-group:after {
    2717         content: ".";
     2604        line-height: 19px;
     2605        word-wrap: break-word;
     2606}
     2607
     2608.category-adder h4 {
     2609        margin-top: 4px;
     2610        margin-bottom: 0px;
     2611}
     2612
     2613.categorydiv .tabs-panel,
     2614.customlinkdiv .tabs-panel,
     2615.posttypediv .tabs-panel,
     2616.taxonomydiv .tabs-panel {
     2617        border-width: 3px;
     2618        border-style: solid;
     2619}
     2620
     2621ul.category-tabs,
     2622ul.add-menu-item-tabs {
     2623        margin-top: 12px;
     2624}
     2625
     2626ul.category-tabs li.tabs,
     2627ul.add-menu-item-tabs li.tabs {
     2628        border-style: solid solid none;
     2629        border-width: 1px 1px 0;
     2630}
     2631
     2632#post-body .category-tabs li.tabs,
     2633#post-body .add-menu-item-tabs li.tabs {
     2634        border-style: solid none solid solid;
     2635        border-width: 1px 0 1px 1px;
     2636        margin-right: -1px;
     2637}
     2638
     2639ul.category-tabs li,
     2640ul.add-menu-item-tabs li {
     2641        padding: 5px;
     2642        -moz-border-radius: 3px 3px 0 0;
     2643        -webkit-border-top-left-radius: 3px;
     2644        -webkit-border-top-right-radius: 3px;
     2645        -khtml-border-top-left-radius: 3px;
     2646        -khtml-border-top-right-radius: 3px;
     2647        border-top-left-radius: 3px;
     2648        border-top-right-radius: 3px;
     2649}
     2650
     2651.form-wrap {
     2652        margin: 10px 0;
     2653        width: 97%;
     2654}
     2655
     2656.form-wrap p,
     2657.form-wrap label {
     2658        font-size: 11px;
     2659}
     2660
     2661.form-wrap label {
    27182662        display: block;
    2719         height: 0;
    2720         clear: both;
    2721         visibility: hidden;
    2722 }
    2723 
    2724 .inline-edit-row p.submit {
    2725         clear: both;
    2726         padding: 0.5em;
    2727         margin: 0.5em 0 0;
    2728 }
    2729 
    2730 .inline-edit-row span.error {
    2731         line-height: 22px;
    2732         margin: 0 15px;
    2733         padding: 3px 5px;
    2734 }
    2735 
    2736 /*      Positioning */
    2737 .inline-edit-row h4 {
    2738         margin: .2em 0;
    2739         padding: 0;
    2740         line-height: 23px;
    2741 }
    2742 .inline-edit-row fieldset span.title,
    2743 .inline-edit-row fieldset span.checkbox-title {
    2744         margin: 0;
    2745         padding: 0;
    2746         line-height: 27px;
    2747 }
    2748 
    2749 .inline-edit-row fieldset label,
    2750 .inline-edit-row fieldset span.inline-edit-categories-label {
    2751         display: block;
    2752         margin: .2em 0;
    2753 }
    2754 
    2755 .inline-edit-row fieldset label.inline-edit-tags {
    2756         margin-top: 0;
    2757 }
    2758 
    2759 .inline-edit-row fieldset label.inline-edit-tags span.title {
    2760         margin: .2em 0;
    2761 }
    2762 
    2763 .inline-edit-row fieldset label span.title {
    2764         display: block;
    2765         float: left;
    2766         width: 5em;
    2767 }
    2768 
    2769 .inline-edit-row fieldset label span.input-text-wrap {
    2770         display: block;
    2771         margin-left: 5em;
    2772 }
    2773 
    2774 .quick-edit-row-post fieldset.inline-edit-col-right label span.title {
    2775         width: auto;
    2776         padding-right: 0.5em;
    2777 }
    2778 
    2779 .inline-edit-row .input-text-wrap input[type=text] {
    2780         width: 100%;
    2781 }
    2782 
    2783 .inline-edit-row fieldset label input[type=checkbox] {
    2784         vertical-align: text-bottom;
    2785 }
    2786 
    2787 .inline-edit-row fieldset label textarea {
    2788         width: 100%;
    2789         height: 4em;
    2790 }
    2791 
    2792 #wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
    2793         max-width: 50%;
    2794 }
    2795 
    2796 #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
    2797         margin-right: 0.5em
    2798 }
    2799 
    2800 /*      Styling */
    2801 .inline-edit-row h4 {
    2802         text-transform: uppercase;
    2803 }
    2804 
    2805 .inline-edit-row fieldset span.title,
    2806 .inline-edit-row fieldset span.checkbox-title {
    2807         font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
    2808         font-style: italic;
    2809         line-height: 1.8em;
    2810 }
    2811 
    2812 /*      Specific Elements */
    2813 .inline-edit-row fieldset input[type="text"],
    2814 .inline-edit-row fieldset textarea {
     2663        padding: 2px;
     2664        font-size: 12px;
     2665}
     2666
     2667.form-field input,
     2668.form-field textarea {
    28152669        border-style: solid;
    28162670        border-width: 1px;
    2817 }
    2818 
    2819 .inline-edit-row fieldset .inline-edit-date {
    2820         float: left;
    2821 }
    2822 
    2823 .inline-edit-row fieldset input[name=jj],
    2824 .inline-edit-row fieldset input[name=hh],
    2825 .inline-edit-row fieldset input[name=mn] {
     2671        width: 95%;
     2672}
     2673
     2674p.description,
     2675.form-wrap p {
     2676        margin: 2px 0 5px;
     2677}
     2678
     2679p.help,
     2680p.description,
     2681span.description,
     2682.form-wrap p {
    28262683        font-size: 12px;
    2827         width: 2.1em;
    2828 }
    2829 
    2830 .inline-edit-row fieldset input[name=aa] {
    2831         font-size: 12px;
    2832         width: 3.5em;
    2833 }
    2834 
    2835 .inline-edit-row fieldset label input.inline-edit-password-input {
    2836         width: 8em;
    2837 }
    2838 
    2839 .inline-edit-row .catshow,
    2840 .inline-edit-row .cathide {
    2841         cursor: pointer;
    2842 }
    2843 
    2844 ul.cat-checklist {
    2845         height: 12em;
     2684        font-style: italic;
     2685        font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
     2686}
     2687
     2688.form-wrap .form-field {
     2689        margin: 0 0 10px;
     2690        padding: 8px;
     2691}
     2692
     2693.col-wrap h3 {
     2694        margin: 12px 0;
     2695        font-size: 1.1em;
     2696}
     2697
     2698.col-wrap p.submit {
     2699        margin-top: -10px;
     2700}
     2701
     2702
     2703/*------------------------------------------------------------------------------
     2704  13.0 - Tags
     2705------------------------------------------------------------------------------*/
     2706
     2707.taghint {
     2708        color: #aaa;
     2709        margin: 15px 0 -24px 12px;
     2710}
     2711
     2712#poststuff .tagsdiv .howto {
     2713        margin: 0 0 6px 8px;
     2714}
     2715
     2716.ajaxtag .newtag {
     2717        background: transparent;
     2718        position: relative;
     2719}
     2720
     2721.tagsdiv .newtag {
     2722        width: 180px;
     2723}
     2724
     2725.tagsdiv .the-tags {
     2726        display: block;
     2727        height: 60px;
     2728        margin: 0 auto;
     2729        overflow: auto;
     2730        width: 260px;
     2731}
     2732
     2733#post-body-content .tagsdiv .the-tags {
     2734        margin: 0 5px;
     2735}
     2736
     2737p.popular-tags {
     2738        -moz-border-radius: 8px;
     2739        -khtml-border-radius: 8px;
     2740        -webkit-border-radius: 8px;
     2741        border-radius: 8px;
     2742        border-width: 1px;
    28462743        border-style: solid;
    2847         border-width: 1px;
    2848         overflow-y: scroll;
    2849         padding: 0 5px;
    2850         margin: 0;
    2851 }
    2852 
    2853 #bulk-titles {
    2854         display: block;
    2855         height: 12em;
    2856         border-style: solid;
    2857         border-width: 1px;
    2858         overflow-y: scroll;
    2859         padding: 0 5px;
    2860         margin: 0 0 5px;
    2861 }
    2862 
    2863 .inline-edit-row fieldset ul.cat-checklist li,
    2864 .inline-edit-row fieldset ul.cat-checklist input {
    2865         margin: 0;
     2744        line-height: 2em;
     2745        padding: 8px 12px 12px;
     2746        text-align: justify;
     2747}
     2748
     2749p.popular-tags a {
     2750        padding: 0 3px;
     2751}
     2752
     2753.tagcloud {
     2754        width: 97%;
     2755        margin: 0 0 40px;
     2756        text-align: justify;
     2757}
     2758
     2759/* TODO: Review this was a conflict - PJW */
     2760.tagcloud h3 {
     2761        margin: 2px 0 12px;
    28662762}
    28672763
     
    28742770        font-size: 11px;
    28752771}
    2876 
    2877 table .inline-edit-row fieldset ul.cat-hover {
    2878         height: auto;
    2879         max-height: 30em;
    2880         overflow-y: auto;
     2772/* END */
     2773
     2774.ac_results {
     2775        padding: 0;
     2776        margin: 0;
     2777        list-style: none;
    28812778        position: absolute;
    2882 }
    2883 
    2884 .inline-edit-row fieldset label input.inline-edit-menu-order-input {
    2885         width: 3em;
    2886 }
    2887 
    2888 .inline-edit-row fieldset label input.inline-edit-slug-input {
    2889         width: 75%;
    2890 }
    2891 
    2892 .quick-edit-row-post fieldset label.inline-edit-status {
    2893         float: left;
    2894 }
    2895 
    2896 #bulk-titles {
    2897         line-height: 140%;
    2898 }
    2899 #bulk-titles div {
    2900         margin: 0.2em 0.3em;
    2901 }
    2902 
    2903 #bulk-titles div a {
     2779        z-index: 10000;
     2780        display: none;
     2781        border-width: 1px;
     2782        border-style: solid;
     2783}
     2784
     2785.ac_results li {
     2786        padding: 2px 5px;
     2787        white-space: nowrap;
     2788        text-align: left;
     2789}
     2790
     2791.ac_over {
    29042792        cursor: pointer;
    2905         display: block;
    2906         float: left;
    2907         height: 10px;
    2908         margin: 3px 3px 0 -2px;
    2909         overflow: hidden;
    2910         position: relative;
    2911         text-indent: -9999px;
    2912         width: 10px;
    2913 }
    2914 
    2915 /* Media library */
     2793}
     2794
     2795.ac_match {
     2796        text-decoration: underline;
     2797}
     2798
     2799
     2800/*------------------------------------------------------------------------------
     2801  14.0 - Media Screen
     2802------------------------------------------------------------------------------*/
     2803
    29162804#wpbody-content #media-items .describe {
    29172805        border-collapse: collapse;
     
    30852973}
    30862974
    3087 /* find posts */
     2975
     2976/*------------------------------------------------------------------------------
     2977  14.1 - Media Uploader
     2978------------------------------------------------------------------------------*/
     2979
    30882980.find-box {
    30892981        width: 500px;
     
    31473039}
    31483040
     3041<<<<<<< .mine
     3042=======
    31493043/* favorite-actions */
    31503044#favorite-actions {
     
    32493143}
    32503144
     3145/* TODO: Review this was a conflict - PJW */
    32513146.swfupload {
    32523147        margin: 5px 10px;
    32533148        vertical-align: middle;
    32543149}
    3255 
    3256 /* table.fixed column width */
    3257 table.fixed {
    3258         table-layout: fixed;
    3259 }
    3260 
    3261 .fixed .column-rating,
    3262 .fixed .column-visible {
    3263         width: 8%;
    3264 }
    3265 
    3266 .fixed .column-date,
    3267 .fixed .column-parent,
    3268 .fixed .column-links {
    3269         width: 10%;
    3270 }
    3271 
    3272 .fixed .column-response,
    3273 .fixed .column-author,
    3274 .fixed .column-categories,
    3275 .fixed .column-tags,
    3276 .fixed .column-rel,
    3277 .fixed .column-role {
    3278         width: 15%;
    3279 }
    3280 
    3281 .fixed .column-comments {
    3282         width: 4em;
    3283         padding: 8px 0;
    3284         text-align: left;
    3285 }
    3286 .fixed .column-comments .vers {
    3287         padding-left: 3px;
    3288 }
    3289 .fixed .column-comments a {
    3290         float: left;
    3291 }
    3292 
    3293 .fixed .column-slug {
    3294         width: 25%;
    3295 }
    3296 
    3297 .fixed .column-posts {
    3298         width: 10%;
    3299 }
    3300 
    3301 .fixed .column-icon {
    3302         width: 80px;
    3303 }
    3304 
    3305 #commentsdiv .fixed .column-author,
    3306 #comments-form .fixed .column-author {
    3307         width: 20%;
    3308 }
    3309 
    3310 .widefat th,
    3311 .widefat td {
    3312         overflow: hidden;
    3313 }
    3314 
    3315 .widefat td p {
    3316         margin: 2px 0 0.8em;
    3317 }
    3318 
    3319 table .vers,
    3320 table .column-visible,
    3321 table .column-rating {
    3322         text-align: center;
    3323 }
    3324 
    3325 .sorting-indicator {
    3326         display: none;
    3327         float: left;
    3328         width: 21px;
    3329         height: 4px;
    3330         margin-top: 5px;
    3331 }
    3332 th.sortable a, th.sorted-asc a, th.sorted-desc a {
    3333         float: left;
    3334 }
    3335 th.sorted-asc .sorting-indicator, th.sorted-desc:hover .sorting-indicator, th.sortable:hover .sorting-indicator {
    3336         display: block;
    3337         background: url(../images/sort_asc.gif) no-repeat scroll 0 0;
    3338 }
    3339 th.sorted-desc .sorting-indicator, th.sorted-asc:hover .sorting-indicator {
    3340         display: block;
    3341         background: url(../images/sort_desc.gif) no-repeat scroll 0 0;
    3342 }
    3343 
    3344 .icon32 {
    3345         float: left;
    3346         height: 36px;
    3347         margin: 14px 6px 0 0;
    3348         width: 36px;
    3349 }
    3350 
    3351 .key-labels label {
    3352         line-height: 24px;
    3353 }
    3354 
    3355 .subtitle {
    3356         font-size: 0.75em;
    3357         line-height: 1;
    3358         padding-left: 25px;
    3359 }
    3360 
    3361 ol {
    3362         list-style-type: decimal;
    3363         margin-left: 2em;
    3364 }
    3365 
    3366 .postbox-container {
    3367         float: left;
    3368         padding-right: 0.5%;
    3369 }
    3370 
    3371 .postbox-container .meta-box-sortables {
    3372         min-height: 300px;
    3373 }
    3374 
    3375 .temp-border {
    3376         border: 1px dotted #ccc;
    3377 }
    3378 
    3379 .columns-prefs label {
    3380         padding: 0 5px;
    3381 }
    3382 
    3383 .theme-install-php h4,
    3384 .plugin-install-php h4 {
    3385         margin: 2.5em 0 8px;
    3386 }
    3387 
    3388 p.install-help {
    3389         margin: 8px 0;
    3390         font-style: italic;
    3391 }
    3392 
    3393 p.popular-tags {
    3394         -moz-border-radius: 8px;
    3395         -khtml-border-radius: 8px;
    3396         -webkit-border-radius: 8px;
    3397         border-radius: 8px;
    3398         border-width: 1px;
    3399         border-style: solid;
    3400         line-height: 2em;
    3401         padding: 8px 12px 12px;
    3402         text-align: justify;
    3403 }
    3404 
    3405 p.popular-tags a {
    3406         padding: 0 3px;
    3407 }
    3408 
    3409 .stuffbox .editcomment {
    3410         clear: none;
    3411 }
    3412 
    3413 .ajax-feedback {
    3414         visibility: hidden;
    3415         vertical-align: bottom;
    3416 }
    3417 
    3418 .tagsdiv .newtag {
    3419         width: 180px;
    3420 }
    3421 
    3422 .tagsdiv .the-tags {
    3423         display: block;
    3424         height: 60px;
    3425         margin: 0 auto;
    3426         overflow: auto;
    3427         width: 260px;
    3428 }
    3429 
    3430 #post-body-content .tagsdiv .the-tags {
    3431         margin: 0 5px;
    3432 }
    3433 
    3434 label,
    3435 #your-profile label + a {
    3436         vertical-align: middle;
    3437 }
    3438 
    3439 #misc-publishing-actions label {
    3440         vertical-align: baseline;
    3441 }
    3442 
    3443 .plugin-update-tr .update-message {
    3444         margin: 5px;
    3445         padding: 3px 5px;
    3446         border-width: 1px;
    3447         border-style: solid;
    3448         -moz-border-radius: 5px;
    3449         -khtml-border-radius: 5px;
    3450         -webkit-border-radius: 5px;
    3451         border-radius: 5px;
    3452 }
    3453 
    3454 .add-new-h2 {
    3455         font-style: normal;
    3456         margin: 0 6px;
    3457         position: relative;
    3458         top: -3px;
    3459 }
     3150/* END */
     3151
     3152/*------------------------------------------------------------------------------
     3153  14.2 - Image Editor
     3154------------------------------------------------------------------------------*/
    34603155
    34613156.describe .image-editor {
     
    36913386}
    36923387
    3693 #dashboard_recent_comments div.undo {
    3694         border-top-style: solid;
    3695         border-top-width: 1px;
    3696         margin: 0 -10px;
    3697         padding: 3px 8px;
     3388
     3389/*------------------------------------------------------------------------------
     3390  15.0 - Comments Screen
     3391------------------------------------------------------------------------------*/
     3392
     3393.form-table {
     3394        border-collapse: collapse;
     3395        margin-top: 0.5em;
     3396        width: 100%;
     3397        margin-bottom: -8px;
     3398        clear: both;
     3399}
     3400
     3401.form-table td {
     3402        margin-bottom: 9px;
     3403        padding: 8px 10px;
     3404        line-height: 20px;
    36983405        font-size: 11px;
     3406}
     3407
     3408.form-table th,
     3409.form-wrap label {
     3410        font-weight: normal;
     3411        text-shadow: rgba(255,255,255,1) 0 1px 0;
     3412}
     3413
     3414.form-table th {
     3415        vertical-align: top;
     3416        text-align: left;
     3417        padding: 10px;
     3418        width: 200px;
     3419}
     3420
     3421.form-table th.th-full {
     3422        width: auto;
     3423}
     3424
     3425.form-table div.color-option {
     3426        display: block;
     3427        clear: both;
     3428        margin-top: 12px;
     3429}
     3430
     3431.form-table input.tog {
     3432        margin-top: 2px;
     3433        margin-right: 2px;
     3434        float: left;
     3435}
     3436
     3437.form-table table.color-palette {
     3438        vertical-align: bottom;
     3439        float: left;
     3440        margin: -12px 3px 11px;
     3441}
     3442
     3443.form-table .color-palette td {
     3444        border-width: 1px 1px 0;
     3445        border-style: solid solid none;
     3446        height: 10px;
     3447        line-height: 20px;
     3448        width: 10px;
     3449}
     3450
     3451.commentlist li {
     3452        padding: 1em 1em .2em;
     3453        margin: 0;
     3454        border-bottom-width: 1px;
     3455        border-bottom-style: solid;
     3456}
     3457
     3458.commentlist li li {
     3459        border-bottom: 0;
     3460        padding: 0;
     3461}
     3462
     3463.commentlist p {
     3464        padding: 0;
     3465        margin: 0 0 .8em;
     3466}
     3467
     3468/* reply to comments */
     3469#replyrow {
     3470        font-size: 11px;
     3471}
     3472
     3473#replyrow input {
     3474        border-width: 1px;
     3475        border-style: solid;
     3476}
     3477
     3478#replyrow td {
     3479        padding: 2px;
     3480}
     3481
     3482#replyrow #editorcontainer {
     3483        border: 0 none;
     3484}
     3485
     3486#replysubmit {
     3487        margin: 0;
     3488        padding: 3px 7px;
     3489}
     3490
     3491#replysubmit img.waiting,
     3492.inline-edit-save img.waiting {
     3493        padding: 4px 10px 0;
     3494        vertical-align: top;
     3495        float: right;
     3496}
     3497
     3498#replysubmit .button {
     3499        margin-right: 5px;
     3500}
     3501
     3502#replyrow #editor-toolbar {
     3503        display: none;
     3504}
     3505
     3506#replyhead {
     3507        font-size: 12px;
     3508        font-weight: bold;
     3509        padding: 2px 10px 4px;
     3510}
     3511
     3512#edithead .inside {
     3513        float: left;
     3514        padding: 3px 0 2px 5px;
     3515        margin: 0;
     3516        text-align: center;
     3517        font-size: 11px;
     3518}
     3519
     3520#edithead .inside input {
     3521        width: 180px;
     3522        font-size: 11px;
     3523}
     3524
     3525#edithead label {
     3526        padding: 2px 0;
     3527}
     3528
     3529#replycontainer {
     3530        padding: 5px;
     3531        border: 0 none;
     3532        height: 120px;
     3533        overflow: hidden;
     3534        position: relative;
     3535}
     3536
     3537#replycontent {
     3538        resize: none;
     3539        margin: 0;
     3540        width: 100%;
     3541        height: 100%;
     3542        padding: 0;
     3543        line-height: 150%;
     3544        border: 0 none;
     3545        outline: none;
     3546        font-size: 12px;
     3547}
     3548
     3549#replyrow #ed_reply_toolbar {
     3550        margin: 0;
     3551        padding: 2px 3px;
     3552}
     3553
     3554.comment-ays {
     3555        margin-bottom: 0;
     3556        border-style: solid;
     3557        border-width: 1px;
     3558}
     3559
     3560.comment-ays th {
     3561        border-right-style: solid;
     3562        border-right-width: 1px;
    36993563}
    37003564
     
    37133577}
    37143578
    3715 /* tag hints */
    3716 .taghint {
    3717         color: #aaa;
    3718         margin: 15px 0 -24px 12px;
    3719 }
    3720 
    3721 #poststuff .tagsdiv .howto {
    3722         margin: 0 0 6px 8px;
    3723 }
    3724 
    3725 .ajaxtag .newtag {
    3726         background: transparent;
    3727         position: relative;
     3579.stuffbox .editcomment {
     3580        clear: none;
     3581}
     3582
     3583#comment-status-radio p {
     3584        margin: 3px 0 5px;
     3585}
     3586
     3587#comment-status-radio input {
     3588        margin: 2px 3px 5px 0;
     3589        vertical-align: middle;
     3590}
     3591
     3592#comment-status-radio label {
     3593        padding: 5px 0;
     3594}
     3595
     3596.commentlist .avatar {
     3597        vertical-align: text-top;
     3598}
     3599
     3600
     3601/*------------------------------------------------------------------------------
     3602  16.0 - Themes
     3603------------------------------------------------------------------------------*/
     3604
     3605table#availablethemes {
     3606        border-spacing: 0;
     3607        border-width: 1px 0;
     3608        border-style: solid none;
     3609        margin: 10px auto;
     3610        width: 100%;
     3611}
     3612
     3613td.available-theme {
     3614        vertical-align: top;
     3615        width: 240px;
     3616        margin: 0;
     3617        padding: 20px;
     3618        text-align: left;
     3619}
     3620
     3621table#availablethemes td {
     3622        border-width: 0 1px 1px;
     3623        border-style: none solid solid;
     3624}
     3625
     3626table#availablethemes td.right,
     3627table#availablethemes td.left  {
     3628        border-right: 0 none;
     3629        border-left: 0 none;
     3630}
     3631
     3632table#availablethemes td.bottom {
     3633        border-bottom: 0 none;
     3634}
     3635
     3636.available-theme a.screenshot {
     3637        width: 240px;
     3638        height: 180px;
     3639        display: block;
     3640        border-width: 1px;
     3641        border-style: solid;
     3642        margin-bottom: 10px;
     3643        overflow: hidden;
     3644}
     3645
     3646.available-theme img {
     3647        width: 240px;
     3648}
     3649
     3650.available-theme h3 {
     3651        margin: 15px 0 5px;
     3652}
     3653
     3654#current-theme {
     3655        margin: 1em 0 1.5em;
     3656}
     3657
     3658#current-theme a {
     3659        border-bottom: none;
     3660}
     3661
     3662#current-theme h3 {
     3663        font-size: 17px;
     3664        font-weight: normal;
     3665        margin: 0;
     3666}
     3667
     3668#current-theme .theme-description {
     3669        margin-top: 5px;
     3670}
     3671
     3672#current-theme img {
     3673        float: left;
     3674        border-width: 1px;
     3675        border-style: solid;
     3676        margin-right: 1em;
     3677        margin-bottom: 1.5em;
     3678        width: 150px;
     3679}
     3680
     3681.theme-options span {
     3682        text-transform: uppercase;
     3683        font-size: 13px;
     3684}
     3685
     3686.theme-options a {
     3687        font-size: 15px;
     3688}
     3689
     3690#TB_window #TB_title a.tb-theme-preview-link,
     3691#TB_window #TB_title a.tb-theme-preview-link:visited {
     3692        font-weight: bold;
     3693        text-decoration: none;
     3694}
     3695
     3696#TB_window #TB_title {
     3697        background-color: #222;
     3698        color: #cfcfcf;
     3699}
     3700
     3701.themes-php .wrap h2, .theme-install-php .wrap h2 {
     3702        border-bottom: 1px solid #ccc;
     3703        padding-bottom: 0;
    37283704}
    37293705
     
    37353711}
    37363712
    3737 .describe .del-link {
    3738         padding-left: 5px;
    3739 }
    3740 
    3741 .comment-ays {
    3742         margin-bottom: 0;
    3743         border-style: solid;
    3744         border-width: 1px;
    3745 }
    3746 
    3747 .comment-ays th {
    3748         border-right-style: solid;
    3749         border-right-width: 1px;
    3750 }
    3751 
    3752 /* Custom Background  */
    3753 
    3754 div#custom-background-image {
    3755         min-height: 100px;
    3756         border: 1px solid #dfdfdf;
    3757 }
    3758 
    3759 div#custom-background-image img {
    3760         max-width: 400px;
    3761         max-height: 300px;
    3762 }
    3763 
    3764 #custom-background label {
    3765         padding-right: 15px;
    3766 }
    3767 
    3768 /* Custom Header */
     3713.theme-install-php h4 {
     3714        margin: 2.5em 0 8px;
     3715}
     3716
     3717
     3718/*------------------------------------------------------------------------------
     3719  16.1 - Custom Header Screen
     3720------------------------------------------------------------------------------*/
     3721
    37693722.appearance_page_custom-header #headimg {
    37703723        border: 1px solid #DFDFDF;
     
    37903743}
    37913744
    3792 /* Tab Interface */
     3745
     3746/*------------------------------------------------------------------------------
     3747  16.2 - Custom Background Screen
     3748------------------------------------------------------------------------------*/
     3749
     3750div#custom-background-image {
     3751        min-height: 100px;
     3752        border: 1px solid #dfdfdf;
     3753}
     3754
     3755div#custom-background-image img {
     3756        max-width: 400px;
     3757        max-height: 300px;
     3758}
     3759
     3760#custom-background label {
     3761        padding-right: 15px;
     3762}
     3763
     3764
     3765/*------------------------------------------------------------------------------
     3766  16.3 - Tabbed Admin Screen Interface (Experimental)
     3767------------------------------------------------------------------------------*/
    37933768
    37943769.nav-tab {
     
    38183793}
    38193794
     3795/* TODO: Review this was a conflict - PJW */
    38203796h2.nav-tab-wrapper, h3.nav-tab-wrapper {
    38213797        border-bottom: 1px solid #ccc;
     
    38273803        font: italic normal normal 24px/35px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
    38283804}
     3805/* END */
     3806
     3807/*------------------------------------------------------------------------------
     3808  17.0 - Plugins
     3809------------------------------------------------------------------------------*/
     3810
     3811.plugins #name {width: 33%}
     3812
     3813.plugins .name,
     3814#pass-strength-result.strong,
     3815#pass-strength-result.short,
     3816.button-highlighted,
     3817input.button-highlighted,
     3818#quicktags #ed_strong,
     3819#ed_reply_toolbar #ed_reply_strong {
     3820        font-weight: bold;
     3821}
     3822
     3823.plugins p {
     3824        margin: 0 4px;
     3825        padding: 0;
     3826}
     3827
     3828.plugins .desc p {
     3829        margin: 0 0 8px;
     3830}
     3831
     3832.plugins td.desc {
     3833        line-height: 1.5em;
     3834}
     3835
     3836.plugins .desc ul,
     3837.plugins .desc ol {
     3838        margin: 0 0 0 2em;
     3839}
     3840
     3841.plugins .desc ul {
     3842        list-style-type: disc;
     3843}
     3844
     3845.plugins .action-links {
     3846        white-space: nowrap;
     3847}
     3848
     3849.plugins .row-actions-visible {
     3850        padding: 0;
     3851}
     3852
     3853.plugins tbody th.check-column {
     3854        padding: 7px 0;
     3855}
     3856
     3857.plugins td, .plugins th {
     3858        border-bottom: 0 none;
     3859}
     3860
     3861#install-plugins .plugins td,
     3862#install-plugins .plugins th {
     3863        border-bottom-style: solid;
     3864        border-bottom-width: 1px;
     3865}
     3866
     3867.plugins .inactive td,
     3868.plugins .inactive th,
     3869.plugins .active td,
     3870.plugins .active th {
     3871        border-top-style: solid;
     3872        border-top-width: 1px;
     3873        padding: 5px 7px 0;
     3874}
     3875
     3876#wpbody-content .plugins .plugin-title {
     3877        padding-right: 12px;
     3878}
     3879
     3880.plugins .second td,
     3881.plugins .second th {
     3882        border-top: 0 none;
     3883        padding: 0 7px 5px;
     3884}
     3885
     3886.plugins-php .widefat tfoot th,
     3887.plugins-php .widefat tfoot td {
     3888        border-top-style: solid;
     3889        border-top-width: 1px;
     3890}
     3891
     3892.plugin-update-tr .update-message {
     3893        margin: 5px;
     3894        padding: 3px 5px;
     3895        border-width: 1px;
     3896        border-style: solid;
     3897        -moz-border-radius: 5px;
     3898        -khtml-border-radius: 5px;
     3899        -webkit-border-radius: 5px;
     3900        border-radius: 5px;
     3901}
     3902
     3903.plugin-install-php h4 {
     3904        margin: 2.5em 0 8px;
     3905}
     3906
     3907
     3908/*------------------------------------------------------------------------------
     3909  18.0 - Users
     3910------------------------------------------------------------------------------*/
     3911
     3912#profile-page .form-table textarea {
     3913        width: 500px;
     3914        margin-bottom: 6px;
     3915}
     3916
     3917#profile-page .form-table #rich_editing {
     3918        margin-right: 5px
     3919}
     3920
     3921#your-profile legend {
     3922        font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
     3923        font-size: 22px;
     3924}
     3925
     3926#your-profile #rich_editing {
     3927        border: none;
     3928}
     3929
     3930#display_name {
     3931        width: 15em;
     3932}
     3933
     3934
     3935/*------------------------------------------------------------------------------
     3936  19.0 - Tools
     3937------------------------------------------------------------------------------*/
     3938
     3939
     3940
     3941
     3942/*------------------------------------------------------------------------------
     3943  20.0 - Settings
     3944------------------------------------------------------------------------------*/
     3945
     3946#utc-time, #local-time {
     3947        padding-left: 25px;
     3948        font-style: italic;
     3949        font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
     3950}
     3951
     3952.defaultavatarpicker .avatar {
     3953        margin: 2px 0;
     3954        vertical-align: middle;
     3955}
     3956
     3957
     3958/*------------------------------------------------------------------------------
     3959  21.0 - Admin Footer
     3960------------------------------------------------------------------------------*/
     3961
     3962#footer {
     3963        margin-top: -46px;
     3964        border-top: 1px;
     3965        border-style: solid;
     3966}
     3967
     3968#footer,
     3969#footer a {
     3970        font-size: 12px;
     3971        font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
     3972        font-style: italic;
     3973}
     3974
     3975#footer p {
     3976        margin: 0;
     3977        padding: 15px;
     3978        line-height: 15px;
     3979}
     3980
     3981#footer a {
     3982        text-decoration: none;
     3983}
     3984
     3985#footer a:hover {
     3986        text-decoration: underline;
     3987}
     3988
     3989
     3990/*------------------------------------------------------------------------------
     3991  22.0 - Misc
     3992------------------------------------------------------------------------------*/
     3993
     3994#excerpt, .attachmentlinks {
     3995        margin: 0;
     3996        height: 4em;
     3997        width: 98%;
     3998}
     3999
     4000#template div {
     4001        margin-right: 190px;
     4002}
     4003
     4004p.pagenav {
     4005        margin: 0;
     4006        display: inline;
     4007}
     4008
     4009.pagenav span {
     4010        font-weight: bold;
     4011        margin: 0 6px;
     4012}
     4013
     4014.row-title {
     4015        font-size: 12px !important;
     4016        font-weight: bold;
     4017}
     4018
     4019.column-author img, .column-username img {
     4020        float: left;
     4021        margin-right: 10px;
     4022        margin-top: 3px;
     4023}
     4024
     4025.row-actions {
     4026        visibility: hidden;
     4027        padding: 2px 0 0;
     4028}
     4029
     4030tr:hover .row-actions,
     4031div.comment-item:hover .row-actions {
     4032        visibility: visible;
     4033}
     4034
     4035.row-actions-visible {
     4036        padding: 2px 0 0;
     4037}
     4038
     4039.form-table .pre {
     4040        padding: 8px;
     4041        margin: 0;
     4042}
     4043
     4044table.form-table td .updated {
     4045        font-size: 13px;
     4046}
     4047
     4048
     4049.tagchecklist {
     4050        margin-left: 14px;
     4051        font-size: 12px;
     4052        overflow: auto;
     4053}
     4054.tagchecklist strong {
     4055        margin-left: -8px;
     4056        position: absolute;
     4057}
     4058.tagchecklist span {
     4059        margin-right: 25px;
     4060        display: block;
     4061        float: left;
     4062        font-size: 11px;
     4063        line-height: 1.8em;
     4064        white-space: nowrap;
     4065        cursor: default;
     4066}
     4067.tagchecklist span a {
     4068        margin: 6px 0pt 0pt -9px;
     4069        cursor: pointer;
     4070        width: 10px;
     4071        height: 10px;
     4072        display: block;
     4073        float: left;
     4074        text-indent: -9999px;
     4075        overflow: hidden;
     4076        position: absolute;
     4077}
     4078
     4079
     4080#poststuff h2 {
     4081        margin-top: 20px;
     4082        font-size: 1.5em;
     4083        margin-bottom: 15px;
     4084        padding: 0 0 3px;
     4085        clear: left;
     4086}
     4087#poststuff h3,
     4088.metabox-holder h3 {
     4089        font-size: 12px;
     4090        font-weight: bold;
     4091        padding: 7px 9px;
     4092        margin: 0;
     4093        line-height: 1;
     4094}
     4095#poststuff .inside,
     4096#poststuff .inside p {
     4097        font-size: 11px;
     4098        margin: 6px 6px 8px;
     4099}
     4100#poststuff .inside .submitbox p {
     4101        margin: 1em 0;
     4102}
     4103#post-visibility-select {
     4104        line-height: 1.5em;
     4105        margin-top: 3px;
     4106}
     4107#poststuff #submitdiv .inside {
     4108        margin: 0;
     4109}
     4110#titlediv, #poststuff .postarea {
     4111        margin-bottom: 20px;
     4112}
     4113
     4114
     4115td.post-title strong, td.plugin-title strong {
     4116        display: block;
     4117        margin-bottom: .2em;
     4118}
     4119td.post-title p, td.plugin-title p {
     4120        margin: 6px 0;
     4121}
     4122td.plugin-title {
     4123        white-space: nowrap;
     4124}
     4125
     4126
     4127.wp-hidden-children .wp-hidden-child,
     4128.ui-tabs-hide {
     4129        display: none;
     4130}
     4131
     4132#templateside ul li a {
     4133        text-decoration: none;
     4134}
     4135
     4136
     4137.tool-box {
     4138        margin: 15px 0 35px;
     4139}
     4140.tool-box .buttons {
     4141        margin: 15px 0;
     4142}
     4143.tool-box .title {
     4144        margin: 8px 0;
     4145        font: 18px/24px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
     4146}
     4147
     4148
     4149.pressthis a {
     4150        font-size: 1.2em;
     4151}
     4152
     4153
     4154#sidemenu {
     4155        margin: -30px 15px 0 315px;
     4156        list-style: none;
     4157        position: relative;
     4158        float: right;
     4159        padding-left: 10px;
     4160        font-size: 12px;
     4161}
     4162#sidemenu a {
     4163        padding: 0 7px;
     4164        display: block;
     4165        float: left;
     4166        line-height: 28px;
     4167        border-top-width: 1px;
     4168        border-top-style: solid;
     4169        border-bottom-width: 1px;
     4170        border-bottom-style: solid;
     4171}
     4172#sidemenu li {
     4173        display: inline;
     4174        line-height: 200%;
     4175        list-style: none;
     4176        text-align: center;
     4177        white-space: nowrap;
     4178        margin: 0;
     4179        padding: 0;
     4180}
     4181#sidemenu a.current {
     4182        font-weight: normal;
     4183        padding-left: 6px;
     4184        padding-right: 6px;
     4185        -moz-border-radius: 4px 4px 0 0;
     4186        -webkit-border-top-left-radius: 4px;
     4187        -webkit-border-top-right-radius: 4px;
     4188        -khtml-border-top-left-radius: 4px;
     4189        -khtml-border-top-right-radius: 4px;
     4190        border-top-left-radius: 4px;
     4191        border-top-right-radius: 4px;
     4192        border-width: 1px;
     4193        border-style: solid;
     4194}
     4195#sidemenu li a .count-0 {
     4196        display: none;
     4197}
     4198
     4199#poststuff .inside .the-tagcloud {
     4200        margin: 5px 0 10px;
     4201        padding: 8px;
     4202        border-width: 1px;
     4203        border-style: solid;
     4204        line-height: 1.8em;
     4205        word-spacing: 3px;
     4206        -moz-border-radius: 6px;
     4207        -khtml-border-radius: 6px;
     4208        -webkit-border-radius: 6px;
     4209        border-radius: 6px;
     4210}
     4211
     4212table .vers,
     4213table .column-visible,
     4214table .column-rating {
     4215        text-align: center;
     4216}
    38294217
    38304218/* Scrollbar fix for bulk upgrade iframe */
     
    38324220        height: 98%;
    38334221}
     4222
     4223
     4224/*------------------------------------------------------------------------------
     4225  23.0  - Dead
     4226------------------------------------------------------------------------------*/
     4227
     4228/* - Not used anywhere in WordPress - verify and then deprecate
     4229------------------------------------------------------------------------------*/
     4230.anchors {
     4231        margin: 10px 20px 10px 20px;
     4232}
     4233div.nav {
     4234        height: 2em;
     4235        padding: 7px 10px;
     4236        vertical-align: text-top;
     4237        margin: 5px 0;
     4238}
     4239.nav .button-secondary {
     4240        padding: 2px 4px;
     4241}
     4242* html #themeselect {
     4243        padding: 0 3px;
     4244        height: 22px;
     4245}
     4246.settings-toggle {
     4247        text-align: right;
     4248        margin: 5px 7px 15px 0;
     4249        font-size: 12px;
     4250}
     4251.settings-toggle h3 {
     4252        margin: 0;
     4253}
     4254form#tags-filter {
     4255        position: relative;
     4256}
     4257
     4258/* - Only used once or twice in all of WP - deprecate for global style
     4259------------------------------------------------------------------------------*/
     4260td.media-icon {
     4261        text-align: center;
     4262        width: 80px;
     4263        padding-top: 8px;
     4264        padding-bottom: 8px;
     4265}
     4266
     4267td.media-icon img {
     4268        max-width: 80px;
     4269        max-height: 60px;
     4270}
     4271.screen-per-page {
     4272        width: 3em;
     4273}
     4274* html #template div {margin-right: 0;}
     4275#save {width: 15em;}
     4276#loading-items {
     4277        position: absolute;
     4278        z-index: 9999;
     4279        padding: 10px;
     4280        background-color: #fff;
     4281        font-weight: bold;
     4282        text-align: center;
     4283        opacity: 0.5;
     4284}
     4285#howto {
     4286        font-size: 11px;
     4287        margin: 0 5px;
     4288        display: block;
     4289}
     4290.import-system {font-size: 16px;}
     4291#namediv table {
     4292        width: 100%;
     4293}
     4294#namediv td.first {
     4295        width: 10px;
     4296        white-space: nowrap;
     4297}
     4298#namediv input {
     4299        width: 98%;
     4300}
     4301#namediv p {
     4302        margin: 10px 0;
     4303}
     4304#submitdiv h3 {
     4305        margin-bottom: 0 !important;
     4306}
     4307
     4308/* - Used - but could/should be deprecated with a CSS reset
     4309------------------------------------------------------------------------------*/
     4310.zerosize {
     4311        height: 0;
     4312        width: 0;
     4313        margin: 0;
     4314        border: 0;
     4315        padding: 0;
     4316        overflow: hidden;
     4317        position: absolute;
     4318}
     4319br.clear {
     4320        height: 2px;
     4321        line-height: 2px;
     4322}
     4323.checkbox {
     4324        border: none;
     4325        margin: 0;
     4326        padding: 0;
     4327}
     4328#content {
     4329        margin: 0;
     4330        width: 100%;
     4331}
     4332fieldset {
     4333        border: 0;
     4334        padding: 0;
     4335        margin: 0;
     4336}
     4337#linksubmitdiv div.inside,
     4338div.inside {
     4339        padding: 0;
     4340        margin: 0;
     4341}
     4342.post-categories {
     4343        display: inline;
     4344        margin: 0;
     4345        padding: 0;
     4346}
     4347.post-categories li {
     4348        display: inline;
     4349}
Note: See TracChangeset for help on using the changeset viewer.