From 3eacdb4f544dc0fd9a48a1f87348f9e5b5bf401c Mon Sep 17 00:00:00 2001 From: InScopeApps Date: Mon, 6 Jun 2011 21:00:11 -0700 Subject: [PATCH] adding unselectable and selectable classes --- css/style.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/css/style.css b/css/style.css index f3a0d46..d6ce854 100644 --- a/css/style.css +++ b/css/style.css @@ -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; +}