tab-focus.less 332 B

123456789
  1. // WebKit-style focus
  2. .tab-focus() {
  3. // WebKit-specific. Other browsers will keep their default outline style.
  4. // (Initially tried to also force default via `outline: initial`,
  5. // but that seems to erroneously remove the outline in Firefox altogether.)
  6. outline: 5px auto -webkit-focus-ring-color;
  7. outline-offset: -2px;
  8. }