Fix table header doesn't cover the entire width of the table

This affected every virtualized table with a header, except the main items table.
This commit is contained in:
Tom Najdek 2024-01-11 12:25:40 +01:00 committed by Dan Stillman
parent 701c76aa3f
commit 7497226de2
2 changed files with 1 additions and 2 deletions

View file

@ -7,7 +7,6 @@
} }
.virtualized-table-header { .virtualized-table-header {
width: 100%;
padding-inline-start: 8px; padding-inline-start: 8px;
padding-inline-end: calc(8px + var(--scrollbar-width, 0px)); padding-inline-end: calc(8px + var(--scrollbar-width, 0px));
box-sizing: border-box; box-sizing: border-box;

View file

@ -218,7 +218,7 @@
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
width: calc(100% - 11px); width: 100%;
background: var(--material-background); background: var(--material-background);
height: 1.83333333em; // 22px @ 12px font size height: 1.83333333em; // 22px @ 12px font size
overflow: hidden; overflow: hidden;