fix: make folder status visible with dot + text label
Lint & Test / test (push) Successful in 10s

Status dot was 8x8px with no text, nearly invisible in the table.
Now renders as a colored dot with an adjacent text label
(Available / Unavailable).
This commit is contained in:
2026-03-29 15:07:46 +03:00
parent cad6e8a1fe
commit c50a8f472c
2 changed files with 17 additions and 5 deletions
+15 -3
View File
@@ -192,19 +192,31 @@ h1 {
}
.status-dot {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.75rem;
color: var(--text-muted);
transition: color 0.3s;
}
.status-dot::before {
content: '';
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--error);
flex-shrink: 0;
transition: background 0.3s;
}
.status-dot.connected,
.status-dot.status-online {
.status-dot.connected::before,
.status-dot.status-online::before {
background: var(--accent);
}
.status-dot.status-offline {
.status-dot.status-offline::before {
background: var(--error);
}