Lighten the big menu separators and make them 1px taller. see #17324
git-svn-id: https://develop.svn.wordpress.org/trunk@17850 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
57d714aedc
commit
a2b439c02f
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 {
|
||||
background: #cfcfcf;
|
||||
border-color: #b7b7b7;
|
||||
background: #dfdfdf;
|
||||
border-color: #cfcfcf;
|
||||
}
|
||||
|
||||
#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 {
|
||||
height: 2px;
|
||||
height: 3px;
|
||||
padding: 0;
|
||||
margin: 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
|
||||
$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_data( 'ie', 'conditional', 'lte IE 7' );
|
||||
|
||||
// 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.
|
||||
$styles->add( 'colors', true, array(), $colors_version );
|
||||
|
|
Loading…
Reference in New Issue