Files
fusion/packages/dashboard/app/components/TaskChangesTab.css
gsxdsm 7c7fb065dc fix(dashboard): remove Lineage commit associations from Task Changes UI
The lineage commit associations panel surfaced low-value provenance
metadata. Remove the UI section, its dead state/fetch wiring in
TaskChangesTab, the orphaned .task-lineage-* CSS, and the obsolete
tests. The fetchTaskCommitAssociations API helper is retained.
2026-06-02 07:40:37 -07:00

38 lines
891 B
CSS

.task-changes-file-list--compact {
gap: var(--space-xs);
}
/* Pull the file list wider to reclaim horizontal space from .detail-body padding */
.task-changes-tab .changes-file-list.task-changes-file-list--compact {
margin-left: calc(-1 * var(--space-md));
margin-right: calc(-1 * var(--space-md));
}
.task-changes-file-list--compact .changes-file-header {
padding: calc(var(--space-sm) - var(--space-xs) / 2);
gap: calc(var(--space-sm) - var(--space-xs) / 2);
}
.task-changes-file-list--compact .changes-file-stat {
margin-left: var(--space-xs);
}
.task-changes-file-list--compact .changes-file-path {
direction: rtl;
text-overflow: ellipsis;
}
.changes-file-header--static {
cursor: default;
}
.changes-file-header--static:hover,
.changes-file-header--static:active {
background: transparent;
}
.changes-file-header--static:focus-visible {
box-shadow: none;
}