From ff4e8838caeccb81011e72fd29a3414e64bdb8e0 Mon Sep 17 00:00:00 2001 From: root <165865819+brianshea2@users.noreply.github.com> Date: Thu, 24 Oct 2024 02:18:14 +0000 Subject: [PATCH] use default tooltip opacity and z-index --- website/index.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/website/index.html b/website/index.html index c73ab3f..7a4e53e 100644 --- a/website/index.html +++ b/website/index.html @@ -71,9 +71,6 @@ .leaflet-top { top: 4em; } - .leaflet-tooltip-pane { - z-index: 750; - } .leaflet-tooltip, .leaflet-popup-content { font-family: "Roboto", sans-serif; font-size: 12px; @@ -288,7 +285,7 @@ ` L.polyline([position, markersByNode[neighborNum].getLatLng()], {weight: 4}) - .bindTooltip(neighborContent, {sticky: true, opacity: 1.0}) + .bindTooltip(neighborContent, {sticky: true}) .on('click', () => showNode(neighborNum)) .addTo(detailsLayer) })