v2.5.0: add shared 443 and per-user traffic

This commit is contained in:
Виталий Литвинов
2026-04-25 14:07:47 +03:00
parent c1b5ffc5a7
commit 63b564f70f
12 changed files with 990 additions and 34 deletions

View File

@@ -667,6 +667,10 @@ h2 {
margin-bottom: 14px;
}
.traffic-summary.compact {
grid-template-columns: repeat(3, minmax(140px, 1fr));
}
.health-ok { background: color-mix(in srgb, var(--green) 18%, transparent); color: var(--green); }
.health-error { background: color-mix(in srgb, var(--red) 18%, transparent); color: var(--red); }
.health-stale,
@@ -830,6 +834,24 @@ td small {
gap: 8px;
}
.traffic-cell {
display: grid;
gap: 6px;
min-width: 150px;
}
.traffic-cell strong {
font-size: 14px;
}
.traffic-cell .soft {
width: max-content;
}
.user-traffic-panel {
margin-top: 18px;
}
.status-control {
display: inline-flex;
align-items: center;