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

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


git-svn-id: http://core.svn.wordpress.org/trunk@27348 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2014-03-11 20:51:16 +00:00
parent 6eb821aa04
commit 099447fba5
4 changed files with 58 additions and 2 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;
}

File diff suppressed because one or more lines are too long

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;
}

File diff suppressed because one or more lines are too long