feat(FN-3942): surface high fan-out blockers in task cards and executor sta

Adds a "high fan-out" indicator that surfaces when a task blocks an unusually large number of downstream tasks, displayed as a warning badge on TaskCards and in the ExecutorStatusBar. The feature includes core type definitions, dashboard UI updates to render the warning with appropriate styling and

Fusion-Task-Id: FN-3942
This commit is contained in:
Fusion
2026-05-10 15:55:09 -07:00
committed by gsxdsm
parent 9044fbc5a5
commit e9834def83
13 changed files with 247 additions and 16 deletions

View File

@@ -47,6 +47,11 @@
color: var(--color-error);
}
.executor-status-bar__segment--fanout {
color: var(--color-warning);
min-width: 0;
}
/* Colored dot indicator */
/* Colored dot indicator */
.executor-status-bar__indicator {
@@ -91,6 +96,10 @@
background: var(--in-review);
}
.executor-status-bar__indicator--fanout {
background: var(--color-warning);
}
/* Numeric count display */
.executor-status-bar__count {
font-family: var(--font-mono);
@@ -121,6 +130,15 @@
line-height: 1;
}
.executor-status-bar__fanout-summary {
color: var(--text);
font-family: var(--font-mono);
font-weight: 600;
max-width: 20ch;
overflow: hidden;
text-overflow: ellipsis;
}
/* Separator between count and max */
.executor-status-bar__separator {
font-family: var(--font-mono);
@@ -257,6 +275,9 @@
/* Responsive: collapse on small screens */
@media (max-width: 768px) {
.executor-status-bar__fanout-summary {
max-width: 14ch;
}
/* Update the footer height token for mobile - must be on the wrapper, not on :root */
.project-content--with-footer {
--executor-footer-height: calc(var(--space-lg) * 2 + var(--space-xs));