From 5b873ea059731bae82ac00fc1a77d54e9acdbdcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=97=A0=E9=97=BB=E9=A3=8E?= Date: Tue, 16 Jun 2026 19:54:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=BD=A8=E8=BF=B9=E6=B5=AE?= =?UTF-8?q?=E7=AA=97=E6=96=87=E5=AD=97=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude --- meshmap_frontend/src/style.css | 45 ++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/meshmap_frontend/src/style.css b/meshmap_frontend/src/style.css index 925be29..f281c47 100644 --- a/meshmap_frontend/src/style.css +++ b/meshmap_frontend/src/style.css @@ -1307,6 +1307,51 @@ h3 { overflow-wrap: anywhere; } +.trajectory-point-popup .leaflet-popup-content { + width: 240px !important; + max-width: 240px !important; +} + +.trajectory-popup { + line-height: 1.45; + white-space: nowrap; +} + +.trajectory-popup strong { + display: block; + margin-bottom: 8px; + color: var(--color-heading); + font-size: 15px; +} + +.trajectory-popup dl { + display: grid; + gap: 6px; + margin: 0; +} + +.trajectory-popup dl div { + display: grid; + grid-template-columns: 42px minmax(0, 1fr); + gap: 8px; + align-items: baseline; +} + +.trajectory-popup dt { + color: var(--color-muted); + font-size: 12px; + letter-spacing: 0; + text-transform: none; + white-space: nowrap; +} + +.trajectory-popup dd { + margin: 0; + color: var(--color-heading); + font-weight: 700; + white-space: nowrap; +} + .detail-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr;