diff options
| author | Ari Rizzitano <[email protected]> | 2017-09-18 15:38:26 -0400 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-09-30 14:19:00 -0700 |
| commit | 136c49a13fc347752674d57442eefc10f050aee0 (patch) | |
| tree | 281a233128893b2a8658f41a1ce295ee4d612bdc | |
| parent | 7b514f48c71565cacd7b5a21dd5529f47e05d3f5 (diff) | |
| download | bootstrap-136c49a13fc347752674d57442eefc10f050aee0.tar.xz bootstrap-136c49a13fc347752674d57442eefc10f050aee0.zip | |
Remove dropdown anchor focus override
Overriding the focus outline for links within the dropdown menu
causes accessibility issues for keyboard-only users. This
removes the override, reenabling the browser's default focus
outline.
| -rw-r--r-- | scss/_dropdown.scss | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scss/_dropdown.scss b/scss/_dropdown.scss index 05e8b1652..6e81947ed 100644 --- a/scss/_dropdown.scss +++ b/scss/_dropdown.scss @@ -105,14 +105,6 @@ } } -// Open state for the dropdown -.show { - // Remove the outline when :focus is triggered - > a { - outline: 0; - } -} - .dropdown-menu.show { display: block; } |
