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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user