tabs focus fix
This commit is contained in:
parent
a363be0dfb
commit
85e1cefdee
3 changed files with 7 additions and 7 deletions
|
@ -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
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue