Better align link element focus with form focus styling, which also improves the visibility. props zamfeer. see #28267.

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


git-svn-id: http://core.svn.wordpress.org/trunk@28432 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Helen Hou-Sandí 2014-05-29 03:58:14 +00:00
parent 78d90bd443
commit ec121f9899
4 changed files with 18 additions and 8 deletions

View File

@ -252,11 +252,16 @@ a:active {
a:focus {
color: #124964;
-webkit-box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
}
a:focus,
a:active {
outline: thin dotted;
.ie8 a:focus {
outline: #5b9dd9 solid 1px;
}
#adminmenu a:focus,

View File

@ -252,11 +252,16 @@ a:active {
a:focus {
color: #124964;
-webkit-box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
}
a:focus,
a:active {
outline: thin dotted;
.ie8 a:focus {
outline: #5b9dd9 solid 1px;
}
#adminmenu a:focus,

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long