diff options
| author | bobzel <zzzman@gmail.com> | 2022-04-24 14:50:21 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-04-24 14:50:21 -0400 |
| commit | 239ff2c0423333bb7e154158c1f52ef688875ee7 (patch) | |
| tree | 47952af8cbcd95436295ce16db9e7bff929ad4d0 /src/client/views/collections/CollectionTreeView.scss | |
| parent | afeb2ac0d4aa914f94596e08fe4030abba050496 (diff) | |
fixed treeViews to vertically span their containers. fixed foreground coloring of nodes with transparent backgrounds to consider parent collection background color
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionTreeView.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionTreeView.scss b/src/client/views/collections/CollectionTreeView.scss index b664d9d82..a8eee9c19 100644 --- a/src/client/views/collections/CollectionTreeView.scss +++ b/src/client/views/collections/CollectionTreeView.scss @@ -2,6 +2,7 @@ .collectionTreeView-container { transform-origin: top left; + height: 100%; } .collectionTreeView-dropTarget { border-width: $COLLECTION_BORDER_WIDTH; @@ -71,6 +72,11 @@ display: none; } +.collectionTreeView-contents { + display: flex; + flex-direction: column; +} + .collectionTreeView-titleBar { display: inline-block; width: 100%; |
