tabs focus fix

This commit is contained in:
Raphael Goetter 2017-08-01 22:02:31 +02:00
parent a363be0dfb
commit 85e1cefdee
3 changed files with 7 additions and 7 deletions

View File

@ -2312,12 +2312,12 @@ button:focus {
}
}
.tabs-menu-link:focus, .tabs-menu-link:hover {
outline: 0;
.tabs-menu-link:hover {
color: #777;
}
.tabs-menu-link.is-active {
.tabs-menu-link.is-active, .tabs-menu-link:focus {
outline: 0;
color: #fff;
background-color: #777;
}

File diff suppressed because one or more lines are too long

View File

@ -25,12 +25,12 @@
text-decoration: none;
transition: .25s background-color;
&:focus, &:hover {
outline: 0;
&:hover {
color: $color-forms;
}
&.is-active {
&.is-active, &:focus {
outline: 0;
color: #fff;
background-color: $color-forms;
}