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:
parent
3d3db69a05
commit
6232d3c395
|
@ -1627,7 +1627,7 @@ div.widgets-sortables,
|
||||||
}
|
}
|
||||||
|
|
||||||
#widgets-right .sidebar-name {
|
#widgets-right .sidebar-name {
|
||||||
background-image: url(../images/fav.png);
|
background-image: url(../images/fav-vs.png);
|
||||||
text-shadow: #3f3f3f 0 -1px 0;
|
text-shadow: #3f3f3f 0 -1px 0;
|
||||||
background-color: #636363;
|
background-color: #636363;
|
||||||
border-color: #636363;
|
border-color: #636363;
|
||||||
|
@ -1639,11 +1639,11 @@ div.widgets-sortables,
|
||||||
}
|
}
|
||||||
|
|
||||||
#widgets-left .sidebar-name-arrow {
|
#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 {
|
#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 {
|
h4 .in-widget-title {
|
||||||
|
|
|
@ -421,10 +421,10 @@ function wp_default_styles( &$styles ) {
|
||||||
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
||||||
|
|
||||||
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
|
// 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', true, array(), '20090519' );
|
||||||
$styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), '20090514'); // for login.php. Is there a better way?
|
$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_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_data( 'colors-classic', 'rtl', true );
|
||||||
|
|
||||||
$styles->add( 'global', '/wp-admin/css/global.css', array(), '20090514' );
|
$styles->add( 'global', '/wp-admin/css/global.css', array(), '20090514' );
|
||||||
|
|
Loading…
Reference in New Issue