Skip to content

Instantly share code, notes, and snippets.

@monkeycycle
Forked from nathos/no-select.scss
Created March 5, 2016 02:22
Show Gist options
  • Save monkeycycle/87107eb0db66b43c0bab to your computer and use it in GitHub Desktop.
Save monkeycycle/87107eb0db66b43c0bab to your computer and use it in GitHub Desktop.
Sass (SCSS) mixin to disable user-select on an element
@mixin no-select {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment