We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From https://www.drupal.org/project/bootstrap/issues/3131151
The <select> element adds pseudo-elements to display an arrow to add visual feedback in the appearance of the theme:
<select>
drupal-bootstrap-styles/src/3.x.x/8.x-3.x/scss/drupal-bootstrap/component/_form.scss
Line 47 in 9a9f753
Line 63 in 9a9f753
This, unfortunately, can cause some screen readers to announce these elements as "unpronounceable".
The only two seemingly possible solutions that I was able to find are:
speak: none
@media reader, speech, aural
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From https://www.drupal.org/project/bootstrap/issues/3131151
The
<select>
element adds pseudo-elements to display an arrow to add visual feedback in the appearance of the theme:drupal-bootstrap-styles/src/3.x.x/8.x-3.x/scss/drupal-bootstrap/component/_form.scss
Line 47 in 9a9f753
drupal-bootstrap-styles/src/3.x.x/8.x-3.x/scss/drupal-bootstrap/component/_form.scss
Line 63 in 9a9f753
This, unfortunately, can cause some screen readers to announce these elements as "unpronounceable".
The only two seemingly possible solutions that I was able to find are:
speak: none
(https://stackoverflow.com/a/46820103)@media reader, speech, aural
to hide element (https://stackoverflow.com/a/26634352)The text was updated successfully, but these errors were encountered: