feat(dm): clickable route popup for long delivery paths

Long routes (>4 hops) show truncated with dotted underline; clicking
opens a popup with the full route and hop count, same style as channel
message path popups. Short routes (<=4 hops) display inline as before.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
MarekWo
2026-03-28 14:44:40 +01:00
parent 7d8a3c895d
commit 90c1c90ba3
2 changed files with 52 additions and 4 deletions
+7
View File
@@ -750,6 +750,13 @@ main {
margin-top: 0.1rem;
}
.dm-route-link {
cursor: pointer;
text-decoration: underline;
text-decoration-style: dotted;
position: relative;
}
.dm-delivery-popup {
position: absolute;
bottom: 100%;