Add NAS status proxy
All checks were successful
Build & Push Docker Image to Gitea Registry / build-and-push (push) Successful in 33s

This commit is contained in:
Kroonk
2026-05-21 16:22:34 +02:00
parent f0674cda37
commit 29b3b623eb
10 changed files with 570 additions and 18 deletions

View File

@@ -500,6 +500,83 @@ main {
margin-top: 14px;
}
.ops-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
margin-top: 14px;
}
.ops-card {
padding: 14px;
background: rgba(7, 9, 20, 0.42);
border: 1px solid var(--border);
border-radius: var(--radius);
}
.ops-card-wide {
grid-column: 1 / -1;
}
.ops-card-head,
.ops-line {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.ops-card-head {
margin-bottom: 10px;
color: #fff;
font-weight: 700;
}
.ghost-button.mini {
min-height: 30px;
padding: 0 10px;
font-size: 0.78rem;
}
.ops-list {
display: grid;
gap: 8px;
color: var(--muted);
font-size: 0.84rem;
}
.ops-line strong {
color: var(--text);
font-weight: 650;
}
.ops-line span {
color: var(--muted);
text-align: right;
}
.usage-bar {
height: 7px;
overflow: hidden;
background: rgba(255, 255, 255, 0.08);
border-radius: 999px;
}
.usage-bar span {
display: block;
height: 100%;
background: var(--ok);
border-radius: inherit;
}
.usage-bar[data-level="warn"] span {
background: var(--warn);
}
.usage-bar[data-level="danger"] span {
background: var(--down);
}
.admin-row {
display: grid;
grid-template-columns: minmax(170px, 1.1fr) minmax(150px, 0.7fr) minmax(220px, 1.2fr) auto;
@@ -582,6 +659,10 @@ main {
grid-template-columns: 1fr;
}
.ops-grid {
grid-template-columns: 1fr;
}
.hero-meta {
width: 100%;
}