You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
338 B
10 lines
338 B
7 years ago
|
// WebKit-style focus
|
||
|
|
||
|
@mixin tab-focus() {
|
||
|
// WebKit-specific. Other browsers will keep their default outline style.
|
||
|
// (Initially tried to also force default via `outline: initial`,
|
||
|
// but that seems to erroneously remove the outline in Firefox altogether.)
|
||
|
outline: 5px auto -webkit-focus-ring-color;
|
||
|
outline-offset: -2px;
|
||
|
}
|