Last active
July 19, 2018 08:48
-
-
Save andreasvirkus/7f866b144b634a7cec36844d79ee1eea to your computer and use it in GitHub Desktop.
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
const styleEl = document.createElement('style') | |
styleEl.setAttribute('id', '_unique-id-outline-styles') | |
document.head.appendChild(styleEl) | |
// Inject outline preventing styles only for non-keyboard users | |
document.addEventListener('mousedown', () => { | |
styleEl.innerHTML = 'a,a:focus,button,button:focus,input,input:focus,textarea,textarea:focus,div:focus {outline:none}' | |
}) | |
document.addEventListener('keydown', () => { | |
styleEl.innerHTML = '' | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment