Hover state for the Add New admin bar icon. props johnjamesjacoby. fixes #19475.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19578 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9d03183e6d
commit
ec305a2ee0
File diff suppressed because one or more lines are too long
|
@ -529,9 +529,7 @@
|
||||||
|
|
||||||
#wpadminbar.nojs #wp-admin-bar-wp-logo:hover > .ab-item .ab-icon,
|
#wpadminbar.nojs #wp-admin-bar-wp-logo:hover > .ab-item .ab-icon,
|
||||||
#wpadminbar #wp-admin-bar-wp-logo.hover > .ab-item .ab-icon {
|
#wpadminbar #wp-admin-bar-wp-logo.hover > .ab-item .ab-icon {
|
||||||
background-image: url(../images/admin-bar-sprite.png?d=20111130);
|
|
||||||
background-position: 0 -104px;
|
background-position: 0 -104px;
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -559,12 +557,19 @@
|
||||||
/**
|
/**
|
||||||
* Add New icon
|
* Add New icon
|
||||||
*/
|
*/
|
||||||
#wp-admin-bar-new-content > .ab-item .ab-icon {
|
#wpadminbar #wp-admin-bar-new-content > .ab-item .ab-icon {
|
||||||
background-image: url(../images/admin-bar-sprite.png?d=20111130);
|
background-image: url(../images/admin-bar-sprite.png?d=20111130);
|
||||||
background-position: -2px -182px;
|
background-position: -2px -182px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add New icon
|
||||||
|
*/
|
||||||
|
#wpadminbar.nojs #wp-admin-bar-new-content:hover > .ab-item .ab-icon,
|
||||||
|
#wpadminbar #wp-admin-bar-new-content.hover > .ab-item .ab-icon {
|
||||||
|
background-position: -2px -203px;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* IE 6-targeted rules
|
* IE 6-targeted rules
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 3.9 KiB |
|
@ -454,7 +454,7 @@ function wp_default_styles( &$styles ) {
|
||||||
$styles->add( 'farbtastic', '/wp-admin/css/farbtastic.css', array(), '1.3u1' );
|
$styles->add( 'farbtastic', '/wp-admin/css/farbtastic.css', array(), '1.3u1' );
|
||||||
$styles->add( 'jcrop', '/wp-includes/js/jcrop/jquery.Jcrop.css', array(), '0.9.8' );
|
$styles->add( 'jcrop', '/wp-includes/js/jcrop/jquery.Jcrop.css', array(), '0.9.8' );
|
||||||
$styles->add( 'imgareaselect', '/wp-includes/js/imgareaselect/imgareaselect.css', array(), '0.9.1' );
|
$styles->add( 'imgareaselect', '/wp-includes/js/imgareaselect/imgareaselect.css', array(), '0.9.1' );
|
||||||
$styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css", array(), '20111206a' );
|
$styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css", array(), '20111209' );
|
||||||
$styles->add( 'wp-jquery-ui-dialog', "/wp-includes/css/jquery-ui-dialog$suffix.css", array(), '20111107' );
|
$styles->add( 'wp-jquery-ui-dialog', "/wp-includes/css/jquery-ui-dialog$suffix.css", array(), '20111107' );
|
||||||
$styles->add( 'editor-buttons', "/wp-includes/css/editor-buttons$suffix.css", array(), '20111114' );
|
$styles->add( 'editor-buttons', "/wp-includes/css/editor-buttons$suffix.css", array(), '20111114' );
|
||||||
$styles->add( 'wp-pointer', "/wp-includes/css/wp-pointer$suffix.css", array(), '20111205' );
|
$styles->add( 'wp-pointer', "/wp-includes/css/wp-pointer$suffix.css", array(), '20111205' );
|
||||||
|
|
Loading…
Reference in New Issue