From 87d344e5f8ba29f7f8d7424c67526c68a549cda2 Mon Sep 17 00:00:00 2001 From: Abe Jellinek Date: Thu, 4 Jan 2024 02:38:12 -0800 Subject: [PATCH] Bring back default virtualized-table background color --- scss/base/_base.scss | 3 +-- scss/components/_collection-tree.scss | 3 ++- scss/components/_virtualized-table.scss | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/scss/base/_base.scss b/scss/base/_base.scss index 1f76f5fd14..8fb344e4f2 100644 --- a/scss/base/_base.scss +++ b/scss/base/_base.scss @@ -33,9 +33,8 @@ min-height: 150px; height: 150px; width: 290px; - background: var(--material-background); } #zotero-title-bar { border-bottom: var(--material-panedivider); -} \ No newline at end of file +} diff --git a/scss/components/_collection-tree.scss b/scss/components/_collection-tree.scss index fb940e0382..084ba1126d 100644 --- a/scss/components/_collection-tree.scss +++ b/scss/components/_collection-tree.scss @@ -17,6 +17,7 @@ $icons: ( #zotero-collections-tree { width: 100%; + background: transparent; .virtualized-table { overflow-y: auto; @@ -71,4 +72,4 @@ $icons: ( min-width: 16px; } } -} \ No newline at end of file +} diff --git a/scss/components/_virtualized-table.scss b/scss/components/_virtualized-table.scss index 8fb1e05a12..0813b1f56b 100644 --- a/scss/components/_virtualized-table.scss +++ b/scss/components/_virtualized-table.scss @@ -17,6 +17,7 @@ flex: 1; overflow: hidden; position: relative; + background: var(--material-background); } }