Fix blue admin theme for new widgets screen, fixes #9878

git-svn-id: http://svn.automattic.com/wordpress/trunk@11403 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-05-19 18:55:58 +00:00
parent 3d3db69a05
commit 6232d3c395
2 changed files with 6 additions and 6 deletions

View File

@ -1627,7 +1627,7 @@ div.widgets-sortables,
}
#widgets-right .sidebar-name {
background-image: url(../images/fav.png);
background-image: url(../images/fav-vs.png);
text-shadow: #3f3f3f 0 -1px 0;
background-color: #636363;
border-color: #636363;
@ -1639,11 +1639,11 @@ div.widgets-sortables,
}
#widgets-left .sidebar-name-arrow {
background: transparent url(../images/menu-bits.gif) no-repeat scroll left -109px;
background: transparent url(../images/menu-bits-vs.gif) no-repeat scroll left -109px;
}
#widgets-right .sidebar-name-arrow {
background: transparent url(../images/fav-arrow.gif) no-repeat scroll 0 -1px;
background: transparent url(../images/fav-arrow-vs.gif) no-repeat scroll 0 -1px;
}
h4 .in-widget-title {

View File

@ -421,10 +421,10 @@ function wp_default_styles( &$styles ) {
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array(), '20090518' );
$styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), '20090514'); // for login.php. Is there a better way?
$styles->add( 'colors', true, array(), '20090519' );
$styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), '20090519'); // for login.php. Is there a better way?
$styles->add_data( 'colors-fresh', 'rtl', true );
$styles->add( 'colors-classic', '/wp-admin/css/colors-classic.css', array(), '20090514');
$styles->add( 'colors-classic', '/wp-admin/css/colors-classic.css', array(), '20090519');
$styles->add_data( 'colors-classic', 'rtl', true );
$styles->add( 'global', '/wp-admin/css/global.css', array(), '20090514' );