mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 17:48:01 +01:00
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:
parent
c21defc596
commit
9f11444c89
File diff suppressed because one or more lines are too long
@ -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
@ -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 */
|
||||
|
@ -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 );
|
||||
|
Loading…
Reference in New Issue
Block a user