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
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
Material Buttons currently have an interior button or anchor element that is not accessible. Buttons must be focusable and have text content or ARIA equivalents. To improve the accessibility of material-button, we should alter the component structure. It's actually not too far off in its current state, but the text content needs to go inside of the button element so it will be read aloud on focus:
The associated CSS should apply hover and focus styles to the internal button element. By using the native element, the role is communicated to assistive technologies by default, and tabIndex is also natively supported.