-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make modals accessible for screen readers #210
Labels
Comments
Since there is now the new HTML5 element |
klues
added a commit
that referenced
this issue
Dec 4, 2024
klues
added a commit
that referenced
this issue
Dec 4, 2024
klues
added a commit
that referenced
this issue
Dec 4, 2024
klues
added a commit
that referenced
this issue
Dec 5, 2024
…ded listener on "close" from baseModal which resets the data of the modal
klues
added a commit
that referenced
this issue
Dec 5, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Accessibility of modals for screen readers currently is very limited. The modal for "set navigation" in edit mode has better accessibility, which also should be added to other modals, at least:
aria-modal="true"
androle="dialog"
, see setNavigationModal.vue:5v-focus
or.focus()
, either on an input element or on the "X" close link at the top, see setNavigationModal.vue:16This change shouldn't be done on each modal manually, but a new Vue component like
baseModal.vue
should be created which takes care of all basic things for modals and is used by all other modals.The text was updated successfully, but these errors were encountered: