You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 29, 2019. It is now read-only.
Not a bug, my apologies, the cause of this is the override in the bootstrap css:
.dropdown-toggle:focus {
outline: 0;
}
I am not sure why they decided to remove the outline. My accessibility QA raised this issue so I've restored the outline:
.dropdown-toggle:focus {
outline: auto 5px -webkit-focus-ring-color;
}
Line 311 on dropdown.js breaks accessibility dropdown focus in button.
element.addClass('dropdown-toggle');
Removing it resolves it.
Please attach to #4772
The text was updated successfully, but these errors were encountered: