feat(FN-3178): iconize fast badge and list indicators

Merged FN-3178: Added icon-based fast indicators to TaskCard and ListView components, replacing text badges with visual icons for quicker status scanning at a glance. Both the task card and list view layers were updated with matching CSS and component changes, along with corresponding test coverage.

Fusion-Task-Id: FN-3178
This commit is contained in:
Fusion
2026-05-02 01:57:27 -07:00
committed by gsxdsm
parent cea1943d91
commit 3cdd77cd55
6 changed files with 57 additions and 19 deletions

View File

@@ -225,14 +225,17 @@
.card-execution-mode-badge {
display: inline-flex;
align-items: center;
font-size: 0.625rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.4px;
padding: 2px 8px;
justify-content: center;
width: 1rem;
height: 1rem;
border-radius: var(--radius-pill);
}
.card-execution-mode-badge svg {
width: 0.75rem;
height: 0.75rem;
}
.card-execution-mode-badge--fast {
background: color-mix(in srgb, var(--color-warning) 20%, transparent);
color: var(--color-warning);