feat(KB-658): reduce ID column width in dashboard list view
- Set ID column width to 70px for consistent sizing in list view - Set header cell width to match data cells at 70px - Remove max-width constraint on title cells for better space utilization - Update responsive styles for title cells
This commit is contained in:
@@ -4050,6 +4050,11 @@ body {
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
/* Set width on ID column header to match data cells */
|
||||
.list-table th:nth-child(2).list-header-cell {
|
||||
width: 70px;
|
||||
}
|
||||
|
||||
.list-header-cell:hover {
|
||||
color: var(--text);
|
||||
}
|
||||
@@ -4111,6 +4116,7 @@ body {
|
||||
}
|
||||
|
||||
.list-cell-id {
|
||||
width: 70px;
|
||||
font-family: var(--font-mono);
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
@@ -4120,7 +4126,6 @@ body {
|
||||
}
|
||||
|
||||
.list-cell-title {
|
||||
max-width: 300px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
@@ -4380,7 +4385,9 @@ body {
|
||||
}
|
||||
|
||||
.list-cell-title {
|
||||
max-width: 150px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.list-cell-date {
|
||||
|
||||
Reference in New Issue
Block a user