Better CSS background color fallback for TinyMCE icons (for browsers without gradient support). props greuben. fixes #17469

git-svn-id: http://svn.automattic.com/wordpress/trunk@17956 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2011-05-18 17:40:49 +00:00
parent c21defc596
commit 9f11444c89
5 changed files with 5 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -967,7 +967,7 @@ table.widefat .spam a:hover,
/* Button */
.wp_themeSkin .mceButton {
border-color: #B0C8D7;
background-color: #e9e8e8; /* Fallback */
background-color: #cfdfe9; /* Fallback */
background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */
background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */
background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */

File diff suppressed because one or more lines are too long

View File

@ -967,7 +967,7 @@ table.widefat .spam a:hover,
/* Button */
.wp_themeSkin .mceButton {
border-color: #ccc;
background-color: #c9c9c9; /* Fallback */
background-color: #eee; /* Fallback */
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */

View File

@ -488,7 +488,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 = '20110517';
$colors_version = '20110518';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array(), $colors_version );