Fix several CSS syntax errors. Props demetris. Fixes #18640.

git-svn-id: http://svn.automattic.com/wordpress/trunk@18691 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
duck_ 2011-09-16 20:41:47 +00:00
parent 34dbc01722
commit c93578bfbe
5 changed files with 13 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@ -608,8 +608,8 @@ input.readonly, textarea.readonly {
#ed_reply_toolbar input {
background: #fff;
background-image: -ms-linear-gradient(bottom, #e5f0f8, #fff); /* IE10 */
background-image: -moz-linear-gradient(bottom, #e5f0f8, #fff)); /* Firefox */
background-image: -o-linear-gradient(bottom, #e5f0f8, #fff)); /* Opera */
background-image: -moz-linear-gradient(bottom, #e5f0f8, #fff); /* Firefox */
background-image: -o-linear-gradient(bottom, #e5f0f8, #fff); /* Opera */
background-image: -webkit-gradient(linear, left bottom, left top, from(#e5f0f8), to(#fff)); /* old Webkit */
background-image: -webkit-linear-gradient(bottom, #e5f0f8, #fff) !important; /* new Webkit */
background-image: linear-gradient(bottom, #e5f0f8, #fff); /* proposed W3C Markup */
@ -971,8 +971,8 @@ table.widefat .spam a:hover,
border-color: #5589AA !important;
background-color: #c9c9c9; /* Fallback */
background-image: -ms-linear-gradient(bottom, #bdccd5, #fff); /* IE10 */
background-image: -moz-linear-gradient(bottom, #bdccd5, #fff)); /* Firefox */
background-image: -o-linear-gradient(bottom, #bdccd5, #fff)); /* Opera */
background-image: -moz-linear-gradient(bottom, #bdccd5, #fff); /* Firefox */
background-image: -o-linear-gradient(bottom, #bdccd5, #fff); /* Opera */
background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#fff)); /* old Webkit */
background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff) !important; /* new Webkit */
background-image: linear-gradient(bottom, #bdccd5, #fff); /* proposed W3C Markup */
@ -986,8 +986,8 @@ table.widefat .spam a:hover,
.wp-editor-wrap .wp_themeSkin a.mceButtonActive:hover {
background: #B0C8D7 !important;
background-image: -ms-linear-gradient(bottom, #fff, #cfdfe9); /* IE10 */
background-image: -moz-linear-gradient(bottom, #fff, #cfdfe9)); /* Firefox */
background-image: -o-linear-gradient(bottom, #fff, #cfdfe9)); /* Opera */
background-image: -moz-linear-gradient(bottom, #fff, #cfdfe9); /* Firefox */
background-image: -o-linear-gradient(bottom, #fff, #cfdfe9); /* Opera */
background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#cfdfe9)); /* old Webkit */
background-image: -webkit-linear-gradient(bottom, #fff, #cfdfe9) !important; /* new Webkit */
background-image: linear-gradient(bottom, #fff, #cfdfe9); /* proposed W3C Markup */
@ -1228,7 +1228,7 @@ table.widefat .spam a:hover,
.wp-editor-wrap.wp_themeSkin tr.mceFirst td.mceToolbar {
border-bottom: 1px solid #ccc;
background-color: #eff8ff; /* Fallback */
background-image: -ms-linear-gradient(bottom, #cfdfe9), #eff8ff); /* IE10 */
background-image: -ms-linear-gradient(bottom, #cfdfe9, #eff8ff); /* IE10 */
background-image: -moz-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Firefox */
background-image: -o-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Opera */
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #eff8ff); /* new Webkit */

File diff suppressed because one or more lines are too long

View File

@ -4644,14 +4644,14 @@ input.button-highlighted,
cursor: move;
color: #333;
background: #dfdfdf;
-webkit-gradient(
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.07, rgb(230,230,230)),
color-stop(0.77, rgb(216,216,216))
);
-moz-linear-gradient(
background-image: -moz-linear-gradient(
center bottom,
rgb(230,230,230) 7%,
rgb(216,216,216) 77%

View File

@ -402,13 +402,13 @@ function wp_default_styles( &$styles ) {
// Any rtl stylesheets that don't have a .dev version for ltr
$no_suffix = array( 'farbtastic' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110915b' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110916' );
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array('wp-admin'), '20110902' );
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20110915b';
$colors_version = '20110916';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array('wp-admin'), $colors_version );