Fix invalid colors for collection tree in dialogs

This commit is contained in:
Tom Najdek 2024-01-12 13:32:35 +01:00 committed by Dan Stillman
parent 7497226de2
commit 0734808774

View file

@ -17,7 +17,14 @@ $icons: (
#zotero-collections-tree {
width: 100%;
background: transparent;
#main-window & {
// virtualized-table has a default background (--material-background)
// which is what we want in most places, including dialogs that include
// #zotero-collections-tree, however main window collection tree is an
// exception
background: transparent;
}
.virtualized-table {
overflow-y: auto;