summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@codeispoetry.ru>2017-02-09 15:20:15 +0000
committerAndrej Mihajlov <and@codeispoetry.ru>2017-02-09 15:20:15 +0000
commit2a19d311f63a15c99bfd91c1651b965fd62eaa7d (patch)
tree0d127b6f6f5e9e81ec667af141326a32d1caa6d9
parentc74e1eded68e2932aa053739f821064c528d552a (diff)
downloadmullvadvpn-2a19d311f63a15c99bfd91c1651b965fd62eaa7d.tar.xz
mullvadvpn-2a19d311f63a15c99bfd91c1651b965fd62eaa7d.zip
Set default cursor and prevent dragging or selection of arbitrary elements
-rw-r--r--app/assets/css/global.css8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/assets/css/global.css b/app/assets/css/global.css
index 9950712524..b30b5167ca 100644
--- a/app/assets/css/global.css
+++ b/app/assets/css/global.css
@@ -1,7 +1,13 @@
* { box-sizing: border-box; }
html {
- -webkit-font-smoothing: antialiased;
+ -webkit-font-smoothing: antialiased;
+ user-select: none;
+ cursor: default;
+}
+
+img {
+ -webkit-user-drag: none;
}
body {