From 82cdf6b732956281b01d6cd40b425140a6f135b8 Mon Sep 17 00:00:00 2001 From: Serhii Zahranychnyi Date: Wed, 3 Apr 2019 13:46:49 +0300 Subject: [PATCH 1/2] Added touch-action "manipulation" for body. --- static/loader.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/loader.css b/static/loader.css index a40419a..9fb8b18 100644 --- a/static/loader.css +++ b/static/loader.css @@ -2,6 +2,7 @@ body{ background: #009688; padding: 0; margin: 0; + touch-action: manipulation; } .load{ width:240px; @@ -81,4 +82,4 @@ body{ 100%{ opacity:1; } -} \ No newline at end of file +} From 84fc749274a68b88951c75c704bfcb77a45e1107 Mon Sep 17 00:00:00 2001 From: Serhii Zahranychnyi Date: Wed, 3 Apr 2019 14:07:09 +0300 Subject: [PATCH 2/2] Prevent text selection after double click. --- static/loader.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/loader.css b/static/loader.css index 9fb8b18..b212bb6 100644 --- a/static/loader.css +++ b/static/loader.css @@ -3,6 +3,10 @@ body{ padding: 0; margin: 0; touch-action: manipulation; + -webkit-user-select: none; + -moz-user-select: none; + -khtml-user-select: none; + -ms-user-select: none; } .load{ width:240px;