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

Props afercia.
Fixes #31712.


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


git-svn-id: http://core.svn.wordpress.org/trunk@32652 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Konstantin Obenland 2015-06-02 05:51:27 +00:00
parent 974ca19e36
commit 5e787a900a
5 changed files with 31 additions and 9 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;

File diff suppressed because one or more lines are too long

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;

File diff suppressed because one or more lines are too long

View File

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