mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Administration: Remove erroneous transition-delay
values from CSS files.
Although unitless zero is allowed for `<length>` CSS data type, it's invalid for `<time>` data type. Props chetan200891, manuel_84, GaryJ. Fixes #43195. Built from https://develop.svn.wordpress.org/trunk@42689 git-svn-id: http://core.svn.wordpress.org/trunk@42517 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e97d2c0407
commit
7a8e4bcb1b
@ -2455,7 +2455,7 @@ div.star-holder .star-rating {
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
vertical-align: top;
|
||||
transition: color .1s ease-in 0;
|
||||
transition: color .1s ease-in;
|
||||
text-align: center;
|
||||
color: #ffb900;
|
||||
}
|
||||
|
2
wp-admin/css/common-rtl.min.css
vendored
2
wp-admin/css/common-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@ -2455,7 +2455,7 @@ div.star-holder .star-rating {
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
vertical-align: top;
|
||||
transition: color .1s ease-in 0;
|
||||
transition: color .1s ease-in;
|
||||
text-align: center;
|
||||
color: #ffb900;
|
||||
}
|
||||
|
2
wp-admin/css/common.min.css
vendored
2
wp-admin/css/common.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1182,7 +1182,7 @@ div#custom-background-image img {
|
||||
display: inline-block;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
transition: background-color .1s ease-in 0;
|
||||
transition: background-color .1s ease-in;
|
||||
}
|
||||
|
||||
.background-position-control .background-position-center-icon {
|
||||
|
2
wp-admin/css/themes-rtl.min.css
vendored
2
wp-admin/css/themes-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1182,7 +1182,7 @@ div#custom-background-image img {
|
||||
display: inline-block;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
transition: background-color .1s ease-in 0;
|
||||
transition: background-color .1s ease-in;
|
||||
}
|
||||
|
||||
.background-position-control .background-position-center-icon {
|
||||
|
2
wp-admin/css/themes.min.css
vendored
2
wp-admin/css/themes.min.css
vendored
File diff suppressed because one or more lines are too long
@ -25,7 +25,7 @@
|
||||
font-style: normal;
|
||||
vertical-align: top;
|
||||
text-align: center;
|
||||
transition: color .1s ease-in 0;
|
||||
transition: color .1s ease-in;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
2
wp-includes/css/dashicons.min.css
vendored
2
wp-includes/css/dashicons.min.css
vendored
File diff suppressed because one or more lines are too long
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-42688';
|
||||
$wp_version = '5.0-alpha-42689';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user