Twenty Seventeen: Add focus style to cookies consent checkbox.

To improve accessibility, the cookies content checkbox in the comment form needed some visible indication when it’s in focus. 

Props pratikthink, afercia.
Fixes #44699.


Built from https://develop.svn.wordpress.org/branches/5.0@44204


git-svn-id: http://core.svn.wordpress.org/branches/5.0@44034 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
laurelfulford 2018-12-15 11:15:59 +00:00
parent 22a50196d7
commit 1e4cb608e9
2 changed files with 6 additions and 1 deletions

View File

@ -982,6 +982,11 @@ select {
max-width: 100%;
}
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: thin dotted #333;
}
input[type="radio"],
input[type="checkbox"] {
margin-right: 0.5em;

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0.2-alpha-44203';
$wp_version = '5.0.2-alpha-44204';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.