Skip to content

Instantly share code, notes, and snippets.

@Coopeh
Created January 3, 2013 16:11
Show Gist options
  • Save Coopeh/4444568 to your computer and use it in GitHub Desktop.
Save Coopeh/4444568 to your computer and use it in GitHub Desktop.
User-Select LESS Mixin
.user-select(@user-select) {
-webkit-touch-callout: @user-select;
-webkit-user-select: @user-select;
-khtml-user-select: @user-select;
-moz-user-select: @user-select;
-ms-user-select: @user-select;
user-select: @user-select;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment