Skip to content

Instantly share code, notes, and snippets.

@mrgenixus
Forked from nathos/no-select.scss
Created February 1, 2017 18:16
Show Gist options
  • Save mrgenixus/db56fa8b80d7963f74fcc163dad878fb to your computer and use it in GitHub Desktop.
Save mrgenixus/db56fa8b80d7963f74fcc163dad878fb 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;
-webkit-touch-callout: none;
-ms-text-size-adjust: none;
-webkit-text-size-adjust: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment