Skip to content

Instantly share code, notes, and snippets.

@joshuabaker
Last active January 15, 2019 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshuabaker/45aba6c6b5c73e65539a26f3538aefaf to your computer and use it in GitHub Desktop.
Save joshuabaker/45aba6c6b5c73e65539a26f3538aefaf to your computer and use it in GitHub Desktop.
Removes outline for mouse users but preserves it for keyboard users.
{
"name": "remove-focus-outline",
"version": "1.0.0"
}
/*
Removes outline for mouse users but preserves it for keyboard users.
Source: https://twitter.com/leaverou/status/1045768279753666562?s=12
*/
:focus:not(:focus-visible) {
outline: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment