Skip to content

Instantly share code, notes, and snippets.

@rakia
Created May 1, 2019 17:36
Show Gist options
  • Save rakia/cb18cc7560ecbc656c07ac8018cfd688 to your computer and use it in GitHub Desktop.
Save rakia/cb18cc7560ecbc656c07ac8018cfd688 to your computer and use it in GitHub Desktop.
/*---- Remove default browser behaviour after selecting cells ----*/
.selected, .unselected {
-webkit-user-select: none; /* Webkit */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE 10 */
-o-user-select: none; /* Opera */
user-select: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment