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 { .tabs-menu-link:hover {
outline: 0;
color: #777; color: #777;
} }
.tabs-menu-link.is-active { .tabs-menu-link.is-active, .tabs-menu-link:focus {
outline: 0;
color: #fff; color: #fff;
background-color: #777; background-color: #777;
} }

File diff suppressed because one or more lines are too long

View file

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