Files
fusion/packages/dashboard/app/components/SkillMultiselect.css
gsxdsm c3d1716fdd refactor(dashboard): split monolithic styles.css into per-component files
Split app/styles.css from ~40k lines down to ~4.5k. Created 56 co-located
component CSS files in app/components/, each imported by its owning .tsx.
The remainder of styles.css holds genuinely global rules (design tokens,
.btn/.card/.modal/.form-input primitives, cross-component @media overrides).

- Lazy-load 13 heavy views (AgentsView, RoadmapsView, NodesView, etc.) via
  React.lazy + Suspense; prefetch all chunks on idle so first navigation is
  instant. Initial JS bundle: 1.58 MB → 1.16 MB (-26%). Initial CSS bundle:
  635 kB → 471 kB (-26%); the rest splits into 13 per-view chunks.

- Add app/test/cssFixture.ts exposing loadAllAppCss() + loadAllAppCssBaseOnly()
  so CSS regression tests load the full per-component bundle (mirroring Vite
  source order). Migrate 30+ tests off direct readFileSync('../styles.css').

- Enable test.css: { include: [/.+/] } in vitest.config.ts so component CSS
  imports actually inject styles in jsdom (fixes getComputedStyle assertions).

- Add ESLint rule (no-restricted-syntax) banning direct styles.css reads in
  dashboard test files; points at loadAllAppCss() instead.

- Restore lost utility classes (.text-muted, .text-secondary, .text-dim,
  .form-input) and rescue dropped chat tool-call rules into QuickChatFAB.css.

- Mobile fixes along the way: scroll containment for view containers
  (min-height:0 + -webkit-overflow-scrolling), QuickChatFAB full-screen on
  mobile (with safe-area-inset for iOS home bar), AgentsView single-row
  header layout, ActivityLogModal close button on right, model-combobox
  z-index above the mobile quick-chat panel.

- Bug fix: SkillsView toggle was display:none which hid the input from the
  accessibility tree; replaced with the visually-hidden pattern so screen
  readers + getByRole still find the checkbox.

- Bug fix: standalone Delete button in TaskDetailModal for triage-column
  tasks (Actions dropdown is hidden in triage state, so previously no way
  to delete a freshly-created task without status change first).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-24 19:39:20 -07:00

181 lines
3.0 KiB
CSS

/* === Skill Multiselect === */
.skill-multiselect {
display: flex;
flex-direction: column;
gap: var(--space-sm);
}
.skill-multiselect-label {
font-size: 13px;
font-weight: 500;
color: var(--text-secondary);
}
.skill-multiselect-chips {
display: flex;
flex-wrap: wrap;
gap: 4px;
}
.skill-chip {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 2px 6px;
background: var(--bg-tertiary);
color: var(--text-secondary);
border-radius: 4px;
font-size: 12px;
line-height: 1.4;
}
.skill-chip-name {
max-width: 150px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.skill-chip-remove {
display: inline-flex;
align-items: center;
justify-content: center;
width: 14px;
height: 14px;
padding: 0;
background: transparent;
border: none;
border-radius: 2px;
color: var(--text-muted);
font-size: 14px;
line-height: 1;
cursor: pointer;
transition: color 0.15s, background 0.15s;
}
.skill-chip-remove:hover:not(:disabled) {
color: var(--text-primary);
background: var(--bg-hover);
}
.skill-chip-remove:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.skill-multiselect-add {
min-height: 32px;
}
.skill-multiselect-loading,
.skill-multiselect-empty {
font-size: 13px;
color: var(--text-muted);
padding: 4px 0;
}
.skill-multiselect-dropdown {
width: 100%;
font-size: 13px;
}
.agent-dialog-skills-hint {
margin-top: 4px;
font-size: 12px;
}
/* Agent detail divider */
/* Skill badge row for Dashboard tab */
.skill-badge-row {
display: flex;
flex-wrap: wrap;
gap: 4px;
}
.skill-badge {
display: inline-block;
padding: 2px 6px;
background: var(--bg-tertiary);
color: var(--text-secondary);
border-radius: 4px;
font-size: 11px;
line-height: 1.4;
}
/* Skill badges in AgentsView */
.badge-skill {
background: var(--bg-tertiary);
color: var(--text-secondary);
}
.agent-board-skills {
display: flex;
flex-wrap: wrap;
gap: 4px;
padding: 4px 8px;
}
.skill-badge-sm {
display: inline-block;
padding: 1px 5px;
background: var(--bg-tertiary);
color: var(--text-secondary);
border-radius: 3px;
font-size: 10px;
line-height: 1.4;
}
.skill-badge-extra {
background: var(--bg-secondary);
}
/* Tree view skill badge */
.agent-tree__skill {
display: inline-block;
padding: 1px 5px;
background: var(--bg-tertiary);
color: var(--text-secondary);
border-radius: 3px;
font-size: 10px;
line-height: 1.4;
margin-left: 6px;
}
/* Org chart skill badge */
.org-chart-node__skill {
display: inline-block;
padding: 1px 5px;
background: var(--bg-tertiary);
color: var(--text-secondary);
border-radius: 3px;
font-size: 10px;
line-height: 1.4;
}
.divider {
color: var(--border);
}
/* Agent detail text-muted */
.text-muted {
color: var(--text-muted);
}
/* Agent detail link */
.link {
display: inline-flex;
align-items: center;
gap: 4px;
color: var(--todo);
text-decoration: none;
}
.link:hover {
text-decoration: underline;
}
/* Text secondary helper */
.text-secondary {
color: var(--text-muted);
}