Toolbar: Limit the icon transition style to color only.
When transition is `all`, it also applies to the icon size, which can cause a bug in Safari where icons get stuck in the wrong size when resizing the browser window. The only expected animation is on the color property, so the transition can be limited to just `color`. Props johnjamesjacoby, sabernhardt, SergeyBiryukov, audrasjb. Fixes #43423. Built from https://develop.svn.wordpress.org/trunk@51644 git-svn-id: http://core.svn.wordpress.org/trunk@51250 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
87bd00ac5b
commit
9d2e8c096f
|
@ -249,7 +249,7 @@ html:lang(he-il) .rtl #wpadminbar * {
|
|||
#wpadminbar .ab-item:before,
|
||||
#wpadminbar #adminbarsearch:before {
|
||||
position: relative;
|
||||
transition: all .1s ease-in-out;
|
||||
transition: color .1s ease-in-out;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-label {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -248,7 +248,7 @@ html:lang(he-il) .rtl #wpadminbar * {
|
|||
#wpadminbar .ab-item:before,
|
||||
#wpadminbar #adminbarsearch:before {
|
||||
position: relative;
|
||||
transition: all .1s ease-in-out;
|
||||
transition: color .1s ease-in-out;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-label {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.9-alpha-51641';
|
||||
$wp_version = '5.9-alpha-51644';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue