Fix text color in the browser nag when no JS, props duck_, fixes #17889

git-svn-id: http://svn.automattic.com/wordpress/trunk@18347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2011-06-27 19:35:26 +00:00
parent 593659b8d0
commit df0cca6ae4
7 changed files with 11 additions and 18 deletions

File diff suppressed because one or more lines are too long

View File

@ -701,7 +701,7 @@ table.widefat span.spam a,
background-color: #f7fcfe;
}
.ui-sortable .postbox h3 {
.postbox h3 {
color: #174f69;
}
@ -710,7 +710,7 @@ table.widefat span.spam a,
}
.sidebar-name:hover h3,
.ui-sortable .postbox h3:hover {
.postbox h3:hover {
color: #000;
}

File diff suppressed because one or more lines are too long

View File

@ -707,7 +707,7 @@ table.widefat span.spam a,
background-image: linear-gradient(top, #f9f9f9, #f5f5f5); /* proposed W3C Markup */
}
.ui-sortable .postbox h3 {
.postbox h3 {
color: #464646;
}
@ -716,7 +716,7 @@ table.widefat span.spam a,
}
.sidebar-name:hover h3,
.ui-sortable .postbox h3:hover {
.postbox h3:hover {
color: #000;
}

File diff suppressed because one or more lines are too long

View File

@ -450,12 +450,10 @@ a.rsswidget {
background-color: #e29808;
background-image: none;
border-color: #edc048;
}
#dashboard_browser_nag.postbox {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow:none;
box-shadow: none;
color: #fff;
}
#dashboard_browser_nag.postbox.browser-insecure h3 {
@ -471,11 +469,6 @@ a.rsswidget {
background: transparent none;
}
.ui-sortable #dashboard_browser_nag.postbox,
.ui-sortable #dashboard_browser_nag.postbox h3 {
color: #fff;
}
#dashboard_browser_nag a {
color: #fff;
}

View File

@ -488,7 +488,7 @@ function wp_default_styles( &$styles ) {
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20110624';
$colors_version = '20110627';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array(), $colors_version );
@ -501,7 +501,7 @@ function wp_default_styles( &$styles ) {
$styles->add( 'global', "/wp-admin/css/global$suffix.css", array(), '20110610' );
$styles->add( 'media', "/wp-admin/css/media$suffix.css", array(), '20110614' );
$styles->add( 'widgets', "/wp-admin/css/widgets$suffix.css", array(), '20110606' );
$styles->add( 'dashboard', "/wp-admin/css/dashboard$suffix.css", array(), '20110611' );
$styles->add( 'dashboard', "/wp-admin/css/dashboard$suffix.css", array(), '20110627' );
$styles->add( 'install', "/wp-admin/css/install$suffix.css", array(), '20110602' ); // Readme as well
$styles->add( 'theme-editor', "/wp-admin/css/theme-editor$suffix.css", array(), '20110602' );
$styles->add( 'press-this', "/wp-admin/css/press-this$suffix.css", array(), '20110611a' );