Last active
February 11, 2022 18:30
-
-
Save fstorr/3fdc519782b74a7350b9336c0ba54327 to your computer and use it in GitHub Desktop.
ARIA widget roles (see: https://www.w3.org/TR/wai-aria-1.2/#widget_roles)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[role="button"],[role="checkbox"],[role="gridcell"],[role="link"],[role="menuitem"], | |
[role="menuitemcheckbox"],[role="menuitemradio"],[role="option"],[role="progressbar"],[role="radio"],[role="scrollbar"],[role="searchbox"],[role="separator"],[role="slider"],[role="spinbutton"], | |
[role="switch"],[role="tab"],[role="tabpanel"],[role="textbox"],[role="treeitem"]{ | |
outline:2px solid #000f8a; | |
outline-offset: -2px; | |
outline-style: dashed; | |
} | |
:is([role="button"],[role="checkbox"],[role="gridcell"],[role="link"],[role="menuitem"], | |
[role="menuitemcheckbox"],[role="menuitemradio"],[role="option"],[role="progressbar"],[role="radio"],[role="scrollbar"],[role="searchbox"],[role="separator"],[role="slider"],[role="spinbutton"], | |
[role="switch"],[role="tab"],[role="tabpanel"],[role="textbox"],[role="treeitem"])::after{ | |
background: #5563ff; | |
border:1px solid #000f8a; | |
border-radius:4px; | |
color:#fff; | |
content:" ("attr(role)") "; | |
font-size:0.75em; | |
display: block; | |
margin:0 0.2em; | |
padding:0.02em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment