-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
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
More screenreader friendly hidden content #14444
Conversation
Conflicts: dist/css/bootstrap.css.map dist/css/bootstrap.min.css
More screenreader friendly hidden content
This broke our collapse and tabs plugins, so it has to be reverted. |
"This broke our collapse and tabs plugins, so it has to be reverted." Same here. If one wants to animate the nav bar (eg fade in) and visibility has been set on this, it causes the element to be shown before the animation has even started. Seems like a change that has not been thought about. |
@jessertaylor A more complete picture was presented in #14673. It's a technique pulled from the H5BP, originally from http://juicystudio.com/article/screen-readers-display-none.php. |
Fixes #14348 by adding
visibility: hidden
andvisibility: visible
to the collapse and tab content to match.hidden
./cc @Willem-Siebe