Use WordPress' default focus styles for links on login screens.

Props afercia.
Fixes #31712.



git-svn-id: https://develop.svn.wordpress.org/trunk@32682 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Konstantin Obenland 2015-06-02 05:50:33 +00:00
parent 5ae2271098
commit d91e9c98de
1 changed files with 14 additions and 3 deletions

View File

@ -42,11 +42,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;
}
p {
@ -183,6 +188,12 @@ p {
color: #00a0d2;
}
.login #nav a:focus,
.login #backtoblog a:focus,
.login h1 a:focus {
color: #124964;
}
.login form .input,
.login input[type="text"] {
font-size: 24px;