fix(KB-658): resolve list view merge conflicts and finalize KB-658 changes

- Resolve conflicts in dashboard styles by preserving fixed ID column sizing and title overflow behavior in list view
- Keep SettingsModal cleanup from branch by removing duplicate variable declaration
- Retain core types conflict resolution from branch updates
- Verify workspace builds successfully with pnpm build before squash commit
This commit is contained in:
gsxdsm
2026-04-01 15:01:56 -07:00
parent 256a79c364
commit 61ea334a58

View File

@@ -5404,14 +5404,16 @@ body {
white-space: nowrap;
}
/* Reduce padding on ID column header to match data cells */
/* Keep the select column compact so the title can use more horizontal space */
.list-table th:first-child.list-header-cell {
padding-right: 8px;
}
/* Set width on ID column header to match data cells */
/* Match the ID header width to the fixed ID cell width */
.list-table th:nth-child(2).list-header-cell {
width: 70px;
min-width: 70px;
max-width: 70px;
}
.list-header-cell:hover {
@@ -5476,12 +5478,14 @@ body {
.list-cell-id {
width: 70px;
min-width: 70px;
max-width: 70px;
font-family: var(--font-mono);
font-size: 12px;
font-weight: 600;
color: var(--text-muted);
white-space: nowrap;
padding: 12px 8px 12px 16px; /* Reduced right padding to tighten space with title */
padding: 12px 8px 12px 16px;
}
.list-cell-title {