show cable lenght info

This commit is contained in:
2025-12-13 13:59:07 +05:00
parent e745ee47e2
commit 4b0722787e
2 changed files with 86 additions and 1 deletions

View File

@@ -124,3 +124,23 @@
border-color: #F59E0B;
color: #F59E0B;
}
/* Distance labels on map */
.distance-label {
background-color: rgba(255, 255, 255, 0.95) !important;
border: 1px solid rgba(0, 0, 0, 0.2) !important;
border-radius: 4px !important;
padding: 2px 6px !important;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}
.dark .distance-label {
background-color: rgba(31, 41, 55, 0.95) !important;
border-color: rgba(255, 255, 255, 0.2) !important;
color: white !important;
}
.distance-label::before {
display: none !important;
}