add connected instances list to aprelay

This commit is contained in:
2026-02-06 21:16:13 -05:00
parent 55b4e9d880
commit 1e11e31dd8
5 changed files with 244 additions and 16 deletions

View File

@@ -446,3 +446,56 @@ body {
justify-self: center;
}
}
.instances-title {
margin: 0 0 10px;
font-size: 16px;
color: #9aa0a6;
}
.instances-table {
border: 1px solid #26282a;
border-radius: 12px;
overflow: hidden;
background: #0f0f10;
}
.instances-header {
display: grid;
grid-template-columns: 1fr 140px;
gap: 12px;
padding: 10px 12px;
border-bottom: 1px solid #26282a;
color: #9aa0a6;
font-size: 14px;
}
.instances-body {
max-height: 240px; /* scrolling area */
overflow: auto;
}
.instances-row {
display: grid;
grid-template-columns: 1fr 140px;
gap: 12px;
padding: 10px 12px;
border-bottom: 1px solid #1f2123;
font-size: 14px;
}
.instances-row:last-child {
border-bottom: 0;
}
.mono {
font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
word-break: break-all;
}
.instances-meta {
margin-top: 10px;
color: #9aa0a6;
font-size: 14px;
}