Fix admin bar background gradients, props ocean90, fixes #19163

git-svn-id: http://svn.automattic.com/wordpress/trunk@19220 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2011-11-08 20:13:41 +00:00
parent ee227a7e48
commit 57340c009e
3 changed files with 7 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@ -40,12 +40,12 @@
min-width: 960px;
background-color: #464646; /* Fallback */
background-image: -ms-linear-gradient(bottom, #464646, #373737 5px); /* IE10 */
background-image: -moz-linear-gradient(bottom, #464646, #373737 5px); /* Firefox */
background-image: -o-linear-gradient(bottom, #464646, #373737); /* Opera */
background-image: -webkit-gradient(linear, left bottom, left top, from(#464646), to(#373737)); /* old Webkit */
background-image: -ms-linear-gradient(bottom, #373737, #464646 5px); /* IE10 */
background-image: -moz-linear-gradient(bottom, #373737, #464646 5px); /* Firefox */
background-image: -o-linear-gradient(bottom, #373737, #464646 5px); /* Opera */
background-image: -webkit-gradient(linear, left bottom, left top, from(#373737), to(#464646)); /* old Webkit */
background-image: -webkit-linear-gradient(bottom, #373737, #464646 5px); /* new Webkit */
background-image: linear-gradient(bottom, #464646, #373737); /* proposed W3C Markup */
background-image: linear-gradient(bottom, #373737, #464646 5px); /* proposed W3C Markup */
}
#wpadminbar ul,

View File

@ -452,7 +452,7 @@ function wp_default_styles( &$styles ) {
$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( 'imgareaselect', '/wp-includes/js/imgareaselect/imgareaselect.css', array(), '0.9.1' );
$styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css", array(), '20111107' );
$styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css", array(), '20111108' );
$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(), '20111107' );
$styles->add( 'wp-pointer', "/wp-includes/css/wp-pointer$suffix.css", array(), '20111017' );