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
The content language dropdown is implemented as a button element and an unordered list (ul) containing all the language values, plus some JS+CSS code to tie them together so it looks like a menu. This is a non-standard implementation of a dropdown menu; a plain select form element would be better, though probably more difficult to style.
When checking for accessibility issues using the WebAIM checker (#1040), it complains about orphaned label elements next to the language dropdown. But the underlying issue is the implementation of the language dropdown, not the label element next to it.
The text was updated successfully, but these errors were encountered:
At which URL did you encounter the problem?
http://localhost/Skosmos/en/
The content language dropdown is implemented as a
button
element and an unordered list (ul
) containing all the language values, plus some JS+CSS code to tie them together so it looks like a menu. This is a non-standard implementation of a dropdown menu; a plainselect
form element would be better, though probably more difficult to style.When checking for accessibility issues using the WebAIM checker (#1040), it complains about orphaned
label
elements next to the language dropdown. But the underlying issue is the implementation of the language dropdown, not thelabel
element next to it.The text was updated successfully, but these errors were encountered: