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.

git-svn-id: http://svn.automattic.com/wordpress/trunk@18086 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2011-06-01 13:52:49 +00:00
parent 307a9c79cc
commit ea720f6a36
3 changed files with 6 additions and 6 deletions

View File

@ -1 +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;}
#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;}

View File

@ -19,15 +19,15 @@
}
/* Background Color for Site Status */
.site-deleted {
.wp-list-table .site-deleted {
background: #ff8573;
}
.site-spammed {
.wp-list-table .site-spammed {
background: #faafaa;
}
.site-archived {
.wp-list-table .site-archived {
background: #ffebe8;
}
.site-mature {
.wp-list-table .site-mature {
background: #fecac2;
}

View File

@ -497,7 +497,7 @@ function wp_default_styles( &$styles ) {
$styles->add( 'colors-fresh', "/wp-admin/css/colors-fresh$suffix.css", array(), $colors_version );
$styles->add( 'colors-classic', "/wp-admin/css/colors-classic$suffix.css", array(), $colors_version );
$styles->add( 'ms', "/wp-admin/css/ms$suffix.css", array(), '20101213' );
$styles->add( 'ms', "/wp-admin/css/ms$suffix.css", array(), '20110601' );
$styles->add( 'global', "/wp-admin/css/global$suffix.css", array(), '20110511g' );
$styles->add( 'media', "/wp-admin/css/media$suffix.css", array(), '20110519' );
$styles->add( 'widgets', "/wp-admin/css/widgets$suffix.css", array(), '20110511b' );