Add missing hyperlink styles to the login screen. Fixes #27245.

git-svn-id: https://develop.svn.wordpress.org/trunk@27505 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2014-03-11 20:50:55 +00:00
parent 11f58c181f
commit b7fbb777e9
1 changed files with 28 additions and 0 deletions

View File

@ -20,6 +20,34 @@ body.login {
line-height: 1.4em;
}
a {
color: #0074a2;
-webkit-transition-property: border, background, color;
transition-property: border, background, color;
-webkit-transition-duration: .05s;
transition-duration: .05s;
-webkit-transition-timing-function: ease-in-out;
transition-timing-function: ease-in-out;
}
a {
outline: 0;
}
a:hover,
a:active {
color: #2ea2cc;
}
a:focus {
color: #124964;
}
a:focus,
a:active {
outline: thin dotted;
}
p {
line-height: 1.5;
}