File: tab-focus.less

package info (click to toggle)
twitter-bootstrap3 3.4.1%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 9,712 kB
  • sloc: javascript: 27,395; makefile: 88; ruby: 31
file content (9 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
// WebKit-style focus

.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;
}