feat: framework color dots in sessions table, filter toolbar panel

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
William Valentin
2026-03-14 12:05:40 -07:00
parent 1c6255d688
commit eb12319f19
2 changed files with 35 additions and 9 deletions
+22
View File
@@ -247,6 +247,10 @@ main > * {
margin-bottom: 1.5rem;
flex-wrap: wrap;
align-items: flex-end;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 1rem 1.25rem;
}
.filters label {
@@ -1242,3 +1246,21 @@ tr.clickable:hover td:first-child {
border-radius: 50%;
flex-shrink: 0;
}
/* ── Framework dots ───────────────────────────────────────── */
.fw-dot {
display: inline-block;
width: 7px;
height: 7px;
border-radius: 50%;
margin-right: 0.4rem;
flex-shrink: 0;
vertical-align: middle;
position: relative;
top: -1px;
}
.fw-dot.openclaw { background: var(--accent); }
.fw-dot.claude-code { background: var(--success); }
.fw-dot.opencode { background: var(--purple); }
.fw-dot.unknown { background: var(--text-dim); }