feat(FN-2729): unify node status indicator with NodeHealthDot

- Resolve merge conflicts in InlineCreateCard and QuickEntryBox using the existing node picker UX
- Replace ad-hoc node status rendering with NodeHealthDot in task creation surfaces
- Keep advanced quick-create controls and portal-based dropdown behavior intact
- Preserve related dashboard styling and tests included in the staged squash

Fusion-Task-Id: FN-2729
This commit is contained in:
Fusion
2026-04-29 08:14:46 -07:00
committed by gsxdsm
parent 5661188a61
commit d250f866d6
13 changed files with 84 additions and 147 deletions

View File

@@ -152,34 +152,6 @@
font-size: 12px;
}
.quick-entry-node-status {
display: inline-flex;
align-items: center;
gap: var(--space-xs);
font-size: 12px;
color: var(--text-muted);
}
.quick-entry-node-status__dot {
width: var(--space-sm);
height: var(--space-sm);
border-radius: var(--radius-pill);
background: var(--color-muted);
}
.quick-entry-node-status--online .quick-entry-node-status__dot {
background: var(--color-success);
}
.quick-entry-node-status--offline .quick-entry-node-status__dot,
.quick-entry-node-status--error .quick-entry-node-status__dot {
background: var(--color-error);
}
.quick-entry-node-status--connecting .quick-entry-node-status__dot {
background: var(--color-warning);
}
.quick-entry-subtasks-toggle {
display: inline-flex;
align-items: center;