Accessibility: Taxonomy: Correct keyboard navigation for the Tags meta box in classic editor.

Props sabernhardt, almendron, jose64, alexstine, joedolson, ryokuhi.
Fixes #52408.
Built from https://develop.svn.wordpress.org/trunk@50363


git-svn-id: http://core.svn.wordpress.org/trunk@49974 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2021-02-16 20:04:07 +00:00
parent e99d544215
commit b50e49f5c1
5 changed files with 11 additions and 5 deletions

View File

@ -705,9 +705,12 @@ ul#add-to-blog-users {
}
/* Colors for the tags autocomplete. */
.wp-tags-autocomplete .ui-state-focus {
.wp-tags-autocomplete .ui-state-focus,
.wp-tags-autocomplete [aria-selected="true"] {
background-color: #2271b1;
color: #fff;
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}
/*------------------------------------------------------------------------------

File diff suppressed because one or more lines are too long

View File

@ -704,9 +704,12 @@ ul#add-to-blog-users {
}
/* Colors for the tags autocomplete. */
.wp-tags-autocomplete .ui-state-focus {
.wp-tags-autocomplete .ui-state-focus,
.wp-tags-autocomplete [aria-selected="true"] {
background-color: #2271b1;
color: #fff;
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}
/*------------------------------------------------------------------------------

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.7-beta2-50362';
$wp_version = '5.7-beta2-50363';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.