mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
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:
parent
974ca19e36
commit
5e787a900a
@ -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;
|
||||
|
2
wp-admin/css/login-rtl.min.css
vendored
2
wp-admin/css/login-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||
|
2
wp-admin/css/login.min.css
vendored
2
wp-admin/css/login.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user