Lighten the big menu separators and make them 1px taller. see #17324
git-svn-id: http://svn.automattic.com/wordpress/trunk@17850 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e5ec44416a
commit
d822248130
File diff suppressed because one or more lines are too long
|
@ -1141,8 +1141,8 @@ table.widefat .spam a:hover,
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu li.wp-menu-separator {
|
#adminmenu li.wp-menu-separator {
|
||||||
background: #cfcfcf;
|
background: #dfdfdf;
|
||||||
border-color: #b7b7b7;
|
border-color: #cfcfcf;
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu a.separator {
|
#adminmenu a.separator {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1280,7 +1280,7 @@ body.no-js #adminmenu li.wp-has-current-submenu .wp-submenu {
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu li.wp-menu-separator {
|
#adminmenu li.wp-menu-separator {
|
||||||
height: 2px;
|
height: 3px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border-width: 1px 0;
|
border-width: 1px 0;
|
||||||
|
|
|
@ -487,13 +487,13 @@ function wp_default_styles( &$styles ) {
|
||||||
// Any rtl stylesheets that don't have a .dev version for ltr
|
// Any rtl stylesheets that don't have a .dev version for ltr
|
||||||
$no_suffix = array( 'farbtastic' );
|
$no_suffix = array( 'farbtastic' );
|
||||||
|
|
||||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110509b' );
|
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110510' );
|
||||||
|
|
||||||
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20101102' );
|
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20101102' );
|
||||||
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
||||||
|
|
||||||
// all colors stylesheets need to have the same query strings (cache manifest compat)
|
// all colors stylesheets need to have the same query strings (cache manifest compat)
|
||||||
$colors_version = '20110509';
|
$colors_version = '20110510';
|
||||||
|
|
||||||
// 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(), $colors_version );
|
$styles->add( 'colors', true, array(), $colors_version );
|
||||||
|
|
Loading…
Reference in New Issue