fix: isolate limit-pool fixed layout to 1440+ breakpoints

Keep the 1600 no-overflow table, but restore natural column widths
and horizontal scrolling at 1280 and 390 so cells are readable.

Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
MS-01-Codex
2026-08-20 04:04:59 +08:00
co-authored by Cursor multica-agent
parent f67100929b
commit 6ab910eeea
2 changed files with 77 additions and 36 deletions
+35 -27
View File
@@ -2220,27 +2220,11 @@
}
#limitPool #limitTable {
min-width: 0;
min-width: var(--table-wide);
width: 100%;
table-layout: fixed;
}
#limitPool #limitTable thead th {
width: auto;
min-width: 0;
}
#limitPool #limitTable thead th.row-number {
width: 36px;
}
#limitPool.redesigned-pool-view .pool-table-card.tbl-wrap {
overflow-x: hidden;
overflow-y: auto;
table-layout: auto;
}
#limitPool #limitTable.tbl thead th,
@@ -2259,20 +2243,44 @@
padding: 0 8px;
}
#limitPool #limitTable .reason-column {
min-width: 0;
@media (min-width: 1440px) {
#limitPool #limitTable {
min-width: 0;
overflow: hidden;
table-layout: fixed;
}
white-space: nowrap;
}
#limitPool #limitTable thead th {
width: auto;
#limitPool #limitTable .pool-reason-cell {
overflow: hidden;
min-width: 0;
}
text-overflow: ellipsis;
#limitPool #limitTable thead th.row-number {
width: 36px;
}
white-space: nowrap;
#limitPool.redesigned-pool-view .pool-table-card.tbl-wrap {
overflow-x: hidden;
overflow-y: auto;
}
#limitPool #limitTable .reason-column {
min-width: 0;
overflow: hidden;
white-space: nowrap;
}
#limitPool #limitTable .pool-reason-cell {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
#brokenTable,