feat(ui): exchange list reads ?attr= URL params and renders filter chips

(carries forward pre-existing attribute-badge color-by-key tweak)
This commit is contained in:
hsiegeln
2026-04-24 11:05:50 +02:00
parent 510206c752
commit 68704e15b4
2 changed files with 70 additions and 12 deletions

View File

@@ -139,3 +139,23 @@
color: var(--text-muted);
}
.attrChip {
display: inline-flex;
align-items: center;
gap: 4px;
margin-left: 8px;
padding: 2px 8px;
background: var(--bg-hover);
border: 1px solid var(--border);
border-radius: 10px;
font-size: 11px;
font-family: var(--font-mono);
color: var(--text-primary);
}
.attrChip code {
background: transparent;
font-family: inherit;
color: var(--text-primary);
}