From ceaef9178a0e23f2a7d60385a84152a0d83a1b9e Mon Sep 17 00:00:00 2001 From: Louis King Date: Sat, 7 Feb 2026 20:13:24 +0000 Subject: [PATCH] Fixed map z-order --- src/meshcore_hub/web/templates/map.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/meshcore_hub/web/templates/map.html b/src/meshcore_hub/web/templates/map.html index 220a266..027c9fe 100644 --- a/src/meshcore_hub/web/templates/map.html +++ b/src/meshcore_hub/web/templates/map.html @@ -27,6 +27,10 @@ .show-labels .map-label { opacity: 1; } + /* Bring hovered marker to front */ + .leaflet-marker-icon:hover { + z-index: 10000 !important; + } {% endblock %}