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:
@@ -5404,14 +5404,16 @@ body {
|
|||||||
white-space: nowrap;
|
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 {
|
.list-table th:first-child.list-header-cell {
|
||||||
padding-right: 8px;
|
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 {
|
.list-table th:nth-child(2).list-header-cell {
|
||||||
width: 70px;
|
width: 70px;
|
||||||
|
min-width: 70px;
|
||||||
|
max-width: 70px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-header-cell:hover {
|
.list-header-cell:hover {
|
||||||
@@ -5476,12 +5478,14 @@ body {
|
|||||||
|
|
||||||
.list-cell-id {
|
.list-cell-id {
|
||||||
width: 70px;
|
width: 70px;
|
||||||
|
min-width: 70px;
|
||||||
|
max-width: 70px;
|
||||||
font-family: var(--font-mono);
|
font-family: var(--font-mono);
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: var(--text-muted);
|
color: var(--text-muted);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
padding: 12px 8px 12px 16px; /* Reduced right padding to tighten space with title */
|
padding: 12px 8px 12px 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-cell-title {
|
.list-cell-title {
|
||||||
|
|||||||
Reference in New Issue
Block a user