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

git-svn-id: https://develop.svn.wordpress.org/trunk@17956 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2011-05-18 17:40:49 +00:00
parent b929276a81
commit 52dfe62ebf
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 );