New admin menu notification bubble color. props JohnONolan, fixes #13474.

git-svn-id: http://svn.automattic.com/wordpress/trunk@14918 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-05-26 00:59:15 +00:00
parent b0e128e69b
commit cb826a30ff
3 changed files with 12 additions and 30 deletions

File diff suppressed because one or more lines are too long

View File

@ -506,38 +506,22 @@ body.press-this .tabs a:hover {
#sidemenu a .update-plugins,
#rightnow .reallynow,
#plugin-information .action-button {
background-color: #d54e21;
color: #fff;
}
#adminmenu li a:hover #awaiting-mod,
#adminmenu li a:hover .update-plugins,
#sidemenu li a:hover .update-plugins {
background-color: #264761;
background-color: #464646;
color: #fff;
-moz-box-shadow: #fff 0 -1px 0;
-khtml-box-shadow: #fff 0 -1px 0;
-webkit-box-shadow: #fff 0 -1px 0;
box-shadow: #fff 0 -1px 0;
}
#adminmenu li.current a #awaiting-mod,
#adminmenu li a.wp-has-current-submenu .update-plugins{
background-color: #fff;
color: #000;
text-shadow: none;
-moz-box-shadow: rgba(0,0,0,0.4) 0 -1px 0;
-khtml-box-shadow: rgba(0,0,0,0.4) 0 -1px 0;
-webkit-box-shadow: rgba(0,0,0,0.4) 0 -1px 0;
box-shadow: rgba(0,0,0,0.4) 0 -1px 0;
}
#adminmenu li.current a:hover #awaiting-mod,
#adminmenu li.current a:hover .update-plugins,
#adminmenu li.wp-has-current-submenu a:hover #awaiting-mod,
#adminmenu li.wp-has-current-submenu a:hover .update-plugins {
background-color: #264761;
background-color: #464646;
color: #fff;
-moz-box-shadow: none;
-khtml-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
-moz-box-shadow: #fff 0 -1px 0;
-khtml-box-shadow: #fff 0 -1px 0;
-webkit-box-shadow: #fff 0 -1px 0;
box-shadow: #fff 0 -1px 0;
}
div#media-upload-header,
@ -1090,7 +1074,6 @@ table.widefat .spam a:hover,
background: #aaa url(../images/menu-bits.gif) top left repeat-x;
border: #aaa 1px solid;
color: #000;
text-shadow: #fff 0px 1px 0px;
}
#adminmenu li.wp-has-current-submenu .wp-submenu,
@ -1123,7 +1106,6 @@ table.widefat .spam a:hover,
background-color: #f5f5f5;
background-image: none;
border-color: #e3e3e3;
text-shadow: rgba(255,255,255,1) 0 1px 0;
}
#adminmenu .wp-submenu ul {

View File

@ -441,7 +441,7 @@ function wp_default_styles( &$styles ) {
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20100524';
$colors_version = '20100525';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array(), $colors_version );