Accessibility: Exclude the Windows High Contrast mode transparent outline from the CSS transition after [44544].

See #41286.

Built from https://develop.svn.wordpress.org/trunk@44575


git-svn-id: http://core.svn.wordpress.org/trunk@44406 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrea Fercia 2019-01-12 15:01:49 +00:00
parent 7a617078fa
commit 1c59f76953
5 changed files with 7 additions and 5 deletions

View File

@ -298,7 +298,8 @@
.folded #adminmenu .wp-has-current-submenu li > a {
padding-left: 16px;
padding-right: 14px;
transition: all .1s ease-in-out;
/* Exclude from the transition the outline for Windows High Contrast mode */
transition: all .1s ease-in-out, outline 0s;
}
#adminmenu .wp-has-current-submenu ul > li > a,

File diff suppressed because one or more lines are too long

View File

@ -298,7 +298,8 @@
.folded #adminmenu .wp-has-current-submenu li > a {
padding-right: 16px;
padding-left: 14px;
transition: all .1s ease-in-out;
/* Exclude from the transition the outline for Windows High Contrast mode */
transition: all .1s ease-in-out, outline 0s;
}
#adminmenu .wp-has-current-submenu ul > li > a,

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.1-beta1-44574';
$wp_version = '5.1-beta1-44575';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.