feat: openclaw card dividers, running pulse, issue label section

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
William Valentin
2026-03-14 12:16:30 -07:00
parent acd89e95a9
commit 13356adfbd
2 changed files with 46 additions and 12 deletions
+34 -5
View File
@@ -566,6 +566,19 @@ tr.expandable:hover .expand-icon::before {
background: rgba(52, 211, 153, 0.1);
color: var(--success);
border: 1px solid rgba(52, 211, 153, 0.2);
gap: 0.4rem;
}
.vm-status.running::before {
content: '';
display: inline-block;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--success);
box-shadow: 0 0 6px rgba(52, 211, 153, 0.5);
animation: livePulse 2s ease-in-out infinite;
flex-shrink: 0;
}
.vm-status.stopped {
@@ -615,16 +628,16 @@ tr.expandable:hover .expand-icon::before {
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
margin-top: 0.875rem;
margin-top: 0;
}
.issue {
font-size: 0.68rem;
padding: 0.22rem 0.6rem;
font-size: 0.7rem;
padding: 0.28rem 0.7rem;
border-radius: 4px;
font-weight: 700;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.06em;
letter-spacing: 0.05em;
}
.issue.gateway_down {
@@ -1321,3 +1334,19 @@ tr.expandable:hover .expand-icon::before {
color: var(--text-bright);
font-family: var(--font-mono);
}
/* ── VM card divider ──────────────────────────────────────── */
.vm-card-divider {
height: 1px;
background: var(--border-soft);
margin: 0.75rem 0;
}
.vm-issues-label {
font-size: 0.65rem;
font-weight: 700;
color: var(--text-dim);
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 0.5rem;
}