From 6ed0e5e2811f66943ec5c0c7e2f8d5a61e45021e Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Wed, 17 Aug 2022 22:50:25 +0200 Subject: [PATCH] use default cursor on desktop (#3876) --- apps/web/styles/globals.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/web/styles/globals.css b/apps/web/styles/globals.css index 567f3b125a..09dbf7e525 100644 --- a/apps/web/styles/globals.css +++ b/apps/web/styles/globals.css @@ -22,13 +22,19 @@ body  { /* disable user selection on buttons, links and images on desktop app */ html.todesktop button, html.todesktop a, -html.todesktop img { +html.todesktop img{ -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; + cursor: default !important; +} + +html.todesktop, +html.todesktop div { + cursor: default !important; } /* make header draggable on desktop app */