Squeeze 10 more pixels for longer menu names, fixes #17544
git-svn-id: http://svn.automattic.com/wordpress/trunk@18122 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
50b5874f41
commit
b0804966b2
File diff suppressed because one or more lines are too long
|
@ -1273,7 +1273,7 @@ table.widefat .spam a:hover,
|
|||
|
||||
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
||||
#adminmenu .wp-menu-open .wp-menu-toggle {
|
||||
background: transparent url(../images/arrows-vs.png) no-repeat 8px 6px;
|
||||
background: transparent url(../images/arrows-vs.png) no-repeat -2px 6px;
|
||||
}
|
||||
|
||||
#adminmenu a.menu-top,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1273,7 +1273,7 @@ table.widefat .spam a:hover,
|
|||
|
||||
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
||||
#adminmenu .wp-menu-open .wp-menu-toggle {
|
||||
background: transparent url(../images/arrows.png) no-repeat 8px 6px;
|
||||
background: transparent url(../images/arrows.png) no-repeat -2px 6px;
|
||||
}
|
||||
|
||||
#adminmenu a.menu-top,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1393,7 +1393,7 @@ body.no-js #adminmenu li.wp-has-current-submenu .wp-submenu {
|
|||
}
|
||||
|
||||
#adminmenu .wp-menu-toggle {
|
||||
width: 28px;
|
||||
width: 18px;
|
||||
clear: right;
|
||||
float: right;
|
||||
margin: 1px 0 0;
|
||||
|
|
|
@ -482,13 +482,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(), '20110602b' );
|
||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110602c' );
|
||||
|
||||
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20110601' );
|
||||
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
||||
|
||||
// all colors stylesheets need to have the same query strings (cache manifest compat)
|
||||
$colors_version = '20110602';
|
||||
$colors_version = '20110602a';
|
||||
|
||||
// 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