From 0a8252c16a9f662c9cfdf2f5743e1976264fe001 Mon Sep 17 00:00:00 2001 From: english-ra <63851638+english-ra@users.noreply.github.com> Date: Wed, 7 Jun 2023 10:44:54 +0100 Subject: [PATCH] =?UTF-8?q?Fixed=20issue=20where=20the=20cursor=20would=20?= =?UTF-8?q?not=20change=20to=20grabbing=20when=20a=20user=E2=80=A6=20(#168?= =?UTF-8?q?08)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/map/ha-map.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/map/ha-map.ts b/src/components/map/ha-map.ts index 5cd9d44451..507657ce15 100644 --- a/src/components/map/ha-map.ts +++ b/src/components/map/ha-map.ts @@ -471,6 +471,11 @@ export class HaMap extends ReactiveElement { background: #090909; --map-filter: invert(0.9) hue-rotate(170deg) grayscale(0.7); } + #map:active { + cursor: grabbing; + cursor: -moz-grabbing; + cursor: -webkit-grabbing; + } .light { color: #000000; }