From 7497226de23ac9f1066e61d7595cb88f4516acd1 Mon Sep 17 00:00:00 2001 From: Tom Najdek Date: Thu, 11 Jan 2024 12:25:40 +0100 Subject: [PATCH] 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. --- scss/components/_item-tree.scss | 1 - scss/components/_virtualized-table.scss | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/scss/components/_item-tree.scss b/scss/components/_item-tree.scss index a9271c0974..ccb3c99681 100644 --- a/scss/components/_item-tree.scss +++ b/scss/components/_item-tree.scss @@ -7,7 +7,6 @@ } .virtualized-table-header { - width: 100%; padding-inline-start: 8px; padding-inline-end: calc(8px + var(--scrollbar-width, 0px)); box-sizing: border-box; diff --git a/scss/components/_virtualized-table.scss b/scss/components/_virtualized-table.scss index 756a5454b5..950d1a968a 100644 --- a/scss/components/_virtualized-table.scss +++ b/scss/components/_virtualized-table.scss @@ -218,7 +218,7 @@ display: flex; flex-direction: row; align-items: center; - width: calc(100% - 11px); + width: 100%; background: var(--material-background); height: 1.83333333em; // 22px @ 12px font size overflow: hidden;