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

git-svn-id: https://develop.svn.wordpress.org/trunk@11403 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2009-05-19 18:55:58 +00:00
parent 780263c7cc
commit 864b51f32b
2 changed files with 6 additions and 6 deletions
+3 -3
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' );