Skip to content

Instantly share code, notes, and snippets.

@4gray
Created May 6, 2016 13:22
Show Gist options
  • Save 4gray/684cf38a4bebdecb0f444d37510bacb7 to your computer and use it in GitHub Desktop.
Save 4gray/684cf38a4bebdecb0f444d37510bacb7 to your computer and use it in GitHub Desktop.
Disable object highlighting (CSS)
:not(input):not(textarea),
:not(input):not(textarea)::after,
:not(input):not(textarea)::before {
-webkit-user-select: none;
user-select: none;
cursor: default;
}
input, button, textarea, :focus {
outline: none; // You should add some other style for :focus to help UX/a11y
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment