fix z-index from tooltip

This commit is contained in:
Anton Tranelis 2025-10-13 17:06:13 +02:00
parent 7ba2ded1d1
commit 47bbeae450

View File

@ -87,4 +87,10 @@
.tw\:tooltip[style*='--tooltip-color']::before {
color: var(--tooltip-text-color, #ffffff) !important;
}
}
/* Make sure tooltips sit above Leaflet panes when used inside map popups */
.tw\:tooltip::before,
.tw\:tooltip::after {
z-index: 4000;
}