Administration: Remove unnecessary `transition-delay` values from Dashicons.
A unitless `0` value for a `<time>` CSS data type was reintroduced in [45040]. This is allowed for `<length>` data types, but is invalid for `<time>`. See #43195. Fixes #46774. Built from https://develop.svn.wordpress.org/trunk@45097 git-svn-id: http://core.svn.wordpress.org/trunk@44906 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
45cd565be3
commit
6d1f493d1d
|
@ -43,7 +43,7 @@
|
|||
font-size: 20px;
|
||||
vertical-align: top;
|
||||
text-align: center;
|
||||
transition: color 0.1s ease-in 0;
|
||||
transition: color 0.1s ease-in;
|
||||
}
|
||||
|
||||
/* Icons */
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.2-beta1-45096';
|
||||
$wp_version = '5.2-beta1-45097';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue