Merge pull request #5728 from SansPseudoFix/5716-focus-link-color-bootstrap-header

Fix #5716 focus header link color
This commit is contained in:
Jonne Haß 2015-03-06 23:44:03 +01:00
commit 00817c8583

View file

@ -39,10 +39,14 @@ body > header {
color: #CCC; color: #CCC;
color: rgb(147,147,147); color: rgb(147,147,147);
&:hover { &:hover, &:focus {
background: none; background: none;
color: $highlight-white; color: $highlight-white;
} }
&:focus {
outline: thin dotted $border-dark-grey;
text-decoration: none;
}
} }
&.landing { &.landing {