From c90af611c11044d00fc7fb926b8d5c0263be7580 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Fri, 26 Sep 2014 16:50:57 +0200 Subject: [PATCH] disable selection which brings havoc on touchscreens --- examples/selfcheck.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/selfcheck.html b/examples/selfcheck.html index fd00e61..d55cbf7 100644 --- a/examples/selfcheck.html +++ b/examples/selfcheck.html @@ -9,6 +9,11 @@ body, input { font-family: 'Roboto', sans-serif; font-size: 110%; + /* disable selection which brings havoc on touchscreens */ + -webkit-user-select: none; + -moz-user-select: -moz-none; + -ms-user-select: none; + user-select: none; } body { -- 2.20.1