File: _focus-ring.scss

package info (click to toggle)
bootstrap-html 5.3.5%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,908 kB
  • sloc: javascript: 17,930; makefile: 49
file content (5 lines) | stat: -rw-r--r-- 385 bytes parent folder | download | duplicates (7)
1
2
3
4
5
.focus-ring:focus {
  outline: 0;
  // By default, there is no `--bs-focus-ring-x`, `--bs-focus-ring-y`, or `--bs-focus-ring-blur`, but we provide CSS variables with fallbacks to initial `0` values
  box-shadow: var(--#{$prefix}focus-ring-x, 0) var(--#{$prefix}focus-ring-y, 0) var(--#{$prefix}focus-ring-blur, 0) var(--#{$prefix}focus-ring-width) var(--#{$prefix}focus-ring-color);
}