feat(FN-2723): show node health in dashboard routing selectors

- Add node status indicators and labels to task creation, quick entry, task form, and settings node selectors
- Surface selected node health in list bulk-edit controls with status dot styling for online/connecting/offline/error states
- Update dashboard component CSS and shared styles for consistent node status presentation
- Include changeset documenting unavailable-node routing policy and default node behavior
This commit is contained in:
Fusion
2026-04-28 08:38:57 -07:00
committed by gsxdsm
parent 0975e24512
commit 81c6f01e9e
11 changed files with 249 additions and 3 deletions

View File

@@ -120,10 +120,39 @@
.quick-entry-node-wrap {
display: inline-flex;
align-items: center;
gap: var(--space-sm);
}
.quick-entry-node-select {
max-width: 250px;
max-width: calc(var(--space-2xl) * 8);
}
.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 {