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.

git-svn-id: https://develop.svn.wordpress.org/trunk@42689 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2018-02-11 12:54:15 +00:00
parent 21258c9bc7
commit 5e9067e8b9
3 changed files with 3 additions and 3 deletions

View File

@@ -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;
}

View File

@@ -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 {

View File

@@ -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;
}