Making Marketers Delight 100% Accessible : Use tab buttons on https://gauravtiwari.org to see it in action.
This file contains 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
// Add aria-pressed or aria-pressed="false" in all theme buttons and input[type=submit] elements by default for this to work. | |
const toggle = document.querySelector('[aria-pressed]'); | |
toggle.addEventListener('click', e => { | |
let pressed = e.target.getAttribute('aria-pressed') === 'true'; | |
e.target.setAttribute('aria-pressed', !pressed); | |
}); |
This file contains 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
[aria-pressed],input[aria-pressed]{ | |
top:-.25rem;left:-.25rem;box-shadow:.125em .125em 0 #8b0000,.25em .25em #8b0000 | |
} | |
[aria-pressed=true],[aria-pressed]:hover,input[aria-pressed=true]{ | |
box-shadow:none | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can customize css as per your needs.