Show protocol enable state and which nodes have each protocol installed.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
orohi
2026-07-29 04:18:09 +03:00
co-authored by Cursor
parent 6510de0214
commit 1ad5125bf4
12 changed files with 745 additions and 67 deletions
+31 -2
View File
@@ -274,8 +274,37 @@ input:focus {
padding: 0.25rem 0.55rem;
border-radius: 999px;
}
.badge.on { background: rgba(61,214,198,0.15); color: var(--ok); }
.badge.off { background: rgba(122,135,156,0.18); color: var(--off); }
.chip-list {
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
}
.chip {
display: inline-flex;
align-items: center;
padding: 0.2rem 0.55rem;
border-radius: 999px;
font-size: 0.78rem;
font-weight: 600;
background: rgba(122,135,156,0.16);
color: var(--muted);
border: 1px solid var(--line);
}
.chip.on { background: rgba(61,214,198,0.15); color: var(--ok); border-color: rgba(61,214,198,0.3); }
.chip.warn { background: rgba(255,196,87,0.14); color: #ffc457; }
.chip.err { background: rgba(255,107,122,0.14); color: #ff8a96; }
.chip.off { opacity: 0.85; }
.actions-multi {
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
justify-content: flex-end;
}
.row-off { opacity: 0.78; }
.proto-servers { margin-top: 0.75rem; }
.proto-servers .stat-label { margin-bottom: 0.35rem; }
.badge.warn { background: rgba(255, 196, 87, 0.16); color: #ffc457; }
.badge.err { background: rgba(255,107,122,0.15); color: #ff8a96; }