It seems that language switcher dropdown does not have a different style when receiving the focus. This fails with https://www.w3.org/WAI/WCAG22/Understanding/focus-appearance-minimum .
When reaching the dropdown it should show a focus state like in the following screenshot:
The dropdown shows no change when having the focus as per the screenshot:
This seems to be a general issue when using BS5 dropdown so probably we should consider adding a generic fix like:
a.btn.dropdown-toggle:focus { border: 1px solid #8894AA; }
Labels |
Added:
?
|
Labels |
Added:
?
|
@carcam can you please test #33929 and let me know what is missing?
Great job there!! That fixes this issue among others we had with this switcher ;)
confirm the issue but not the fix - the problem is the outline that is being set to 0 here
.btn-check:focus + &, &:focus { outline: 0; box-shadow: $btn-focus-box-shadow; }
I agree, the outline is much better.
Thanks @brianteeman and @drmenzelit !!
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2021-06-05 09:10:39 |
Closed_By | ⇒ | richard67 | |
Labels |
Added:
?
Removed: ? |
confirm the issue but not the fix - the problem is the outline that is being set to 0 here