From 36b4510e4678a445cd6b13276497334ed6030760 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Fri, 5 Jul 2024 18:59:13 +0200 Subject: [PATCH] fix: make sure panels are above controls fix #1954 --- umap/static/umap/map.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umap/static/umap/map.css b/umap/static/umap/map.css index baf8fa3b..a3df4b8b 100644 --- a/umap/static/umap/map.css +++ b/umap/static/umap/map.css @@ -1436,7 +1436,7 @@ span.popup-icon { margin-left: 10px; } .leaflet-top { - z-index: calc(var(--zindex-panels) + 1); + z-index: calc(var(--zindex-panels) - 1); } .leaflet-popup-content { min-width: 200px;