Make WordPress Core

Changeset 18086


Ignore:
Timestamp:
06/01/2011 01:52:49 PM (12 years ago)
Author:
westi
Message:

Make the css for the row status highlighting more specific so that it works regardless of the ordering of the CSS loading. Fixes #16827 props wpmuguru.

Location:
trunk
Files:
3 edited

Legend:

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

    r16902 r18086  
    1 #dashboard_right_now p.musub{margin-top:12px;border-top:1px solid #ececec;padding-left:16px;position:static;}#dashboard_right_now td.b a.musublink{font-size:16px;}#dashboard_right_now div.musubtable{border-top:none;}#dashboard_right_now div.musubtable .t{white-space:normal;}.site-deleted{background:#ff8573;}.site-spammed{background:#faafaa;}.site-archived{background:#ffebe8;}.site-mature{background:#fecac2;}
     1#dashboard_right_now p.musub{margin-top:12px;border-top:1px solid #ececec;padding-left:16px;position:static;}#dashboard_right_now td.b a.musublink{font-size:16px;}#dashboard_right_now div.musubtable{border-top:none;}#dashboard_right_now div.musubtable .t{white-space:normal;}.wp-list-table .site-deleted{background:#ff8573;}.wp-list-table .site-spammed{background:#faafaa;}.wp-list-table .site-archived{background:#ffebe8;}.wp-list-table .site-mature{background:#fecac2;}
  • trunk/wp-admin/css/ms.dev.css

    r16902 r18086  
    2020
    2121/* Background Color for Site Status */
    22 .site-deleted {
     22.wp-list-table .site-deleted {
    2323    background: #ff8573;
    2424}
    25 .site-spammed {
     25.wp-list-table .site-spammed {
    2626    background: #faafaa;
    2727}
    28 .site-archived {
     28.wp-list-table .site-archived {
    2929    background: #ffebe8;
    3030}
    31 .site-mature {
     31.wp-list-table .site-mature {
    3232    background: #fecac2;
    3333}
  • trunk/wp-includes/script-loader.php

    r18075 r18086  
    498498    $styles->add( 'colors-classic', "/wp-admin/css/colors-classic$suffix.css", array(), $colors_version );
    499499
    500     $styles->add( 'ms', "/wp-admin/css/ms$suffix.css", array(), '20101213' );
     500    $styles->add( 'ms', "/wp-admin/css/ms$suffix.css", array(), '20110601' );
    501501    $styles->add( 'global', "/wp-admin/css/global$suffix.css", array(), '20110511g' );
    502502    $styles->add( 'media', "/wp-admin/css/media$suffix.css", array(), '20110519' );
Note: See TracChangeset for help on using the changeset viewer.