From 47bbeae45081c05512bd76a70733a79662f95437 Mon Sep 17 00:00:00 2001 From: Anton Tranelis Date: Mon, 13 Oct 2025 17:06:13 +0200 Subject: [PATCH] fix z-index from tooltip --- lib/src/assets/css/tailwind.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/src/assets/css/tailwind.css b/lib/src/assets/css/tailwind.css index 5632a534..35ab65bf 100644 --- a/lib/src/assets/css/tailwind.css +++ b/lib/src/assets/css/tailwind.css @@ -87,4 +87,10 @@ .tw\:tooltip[style*='--tooltip-color']::before { color: var(--tooltip-text-color, #ffffff) !important; -} \ No newline at end of file +} + +/* Make sure tooltips sit above Leaflet panes when used inside map popups */ +.tw\:tooltip::before, +.tw\:tooltip::after { + z-index: 4000; +}