Skip to content

Commit

Permalink
adding unselectable and selectable classes
Browse files Browse the repository at this point in the history
  • Loading branch information
kgn committed Jun 7, 2011
1 parent b9a9474 commit 3eacdb4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions css/style.css
Expand Up @@ -31,3 +31,19 @@ footer, header, hgroup, menu, nav, section {
body {
text-rendering: optimizeLegibility;
}

.unselectable {
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
user-select: none;
}

.selectable {
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-o-user-select: text;
user-select: text;
}

0 comments on commit 3eacdb4

Please sign in to comment.