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:
parent
701c76aa3f
commit
7497226de2
2 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue