diff --git a/meshview/templates/map.html b/meshview/templates/map.html
index 1caf633..6a21415 100644
--- a/meshview/templates/map.html
+++ b/meshview/templates/map.html
@@ -26,11 +26,11 @@
.blinking-tooltip {
background: white;
color: black;
- border: 2px solid #111;
+ border: 1px solid #111;
border-radius: 6px;
padding: 6px 10px;
font-size: 14px;
- font-weight: 600;
+ font-weight: 400;
box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.blinking-tooltip.text-packet {
@@ -432,24 +432,24 @@ function renderNodesOnMap(){
markerById[node.key] = marker;
const popup = `
- ${node.long_name} (${node.short_name})
+ ${node.long_name} (${node.short_name})
- ${node.channel}
- ${node.hw_model}
- ${node.role}
- ${
+ ${node.channel}
+ ${node.hw_model}
+ ${node.role}
+ ${
node.is_mqtt_gateway ? (mapTranslations.yes || "Yes") : (mapTranslations.no || "No")
}
${
node.last_seen_us
- ? ` ${timeAgoFromUs(node.last_seen_us)}
`
+ ? ` ${timeAgoFromUs(node.last_seen_us)}
`
: ""
}
${
node.firmware
- ? ` ${node.firmware}
`
+ ? ` ${node.firmware}
`
: ""
}
`;