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.
38 lines
891 B
CSS
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;
|
|
}
|
|
|