Set DFW background color to match the admin theme's background, see #17644

git-svn-id: http://svn.automattic.com/wordpress/trunk@18108 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2011-06-01 20:50:04 +00:00
parent 3af271ea94
commit 92343666f3
7 changed files with 12 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@ -2114,7 +2114,10 @@ div.widgets-sortables,
/* custom header & background pages */
/* full screen */
.fullscreen-overlay {
background: #fff;
}
.wp-fullscreen-focus #wp-fullscreen-title,
.wp-fullscreen-focus #wp-fullscreen-container {
border-color: #BED1DD;

File diff suppressed because one or more lines are too long

View File

@ -2114,6 +2114,9 @@ div.widgets-sortables,
/* custom header & background pages */
/* full screen */
.fullscreen-overlay {
background: #fff;
}
.wp-fullscreen-focus #wp-fullscreen-title,
.wp-fullscreen-focus #wp-fullscreen-container {

File diff suppressed because one or more lines are too long

View File

@ -577,7 +577,6 @@ form.upgrade .hint {
bottom: 0;
left: 0;
right: 0;
background: #f9f9f9;
filter: inherit;
}

View File

@ -484,11 +484,11 @@ function wp_default_styles( &$styles ) {
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110601' );
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20110518' );
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20110601' );
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20110601';
$colors_version = '20110601a';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array(), $colors_version );