diff options
| author | eperelm2 <emily_perelman@brown.edu> | 2023-07-24 11:16:58 -0400 |
|---|---|---|
| committer | eperelm2 <emily_perelman@brown.edu> | 2023-07-24 11:16:58 -0400 |
| commit | 78221fd50b722ab32112d83c0d5cdc0658f2b34f (patch) | |
| tree | edd999bc79364f724e5e3c399dddff6266d4b184 /src/client/views/collections/TreeView.scss | |
| parent | 50cb7d0981a71c2eb45fbecfc2befad94d431eaa (diff) | |
| parent | 9bd34e05c1a55adc1dbc32635442a184a49ee444 (diff) | |
Merge branch 'master' into secondpropertiesmenu-emily
Diffstat (limited to 'src/client/views/collections/TreeView.scss')
| -rw-r--r-- | src/client/views/collections/TreeView.scss | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/src/client/views/collections/TreeView.scss b/src/client/views/collections/TreeView.scss index cfa658944..d22e85880 100644 --- a/src/client/views/collections/TreeView.scss +++ b/src/client/views/collections/TreeView.scss @@ -47,6 +47,7 @@ color: $medium-gray; border: #80808030 1px solid; border-radius: 5px; + z-index: 1; } } @@ -54,9 +55,6 @@ position: absolute; height: max-content; pointer-events: none; - color: white; - border-radius: 4px; - font-size: 10px; } .treeView-container-active { @@ -104,10 +102,26 @@ align-items: center; width: max-content; border-radius: 5px; + overflow: hidden; + position: relative; + z-index: 1; + + .treeView-background { + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + z-index: 0; + filter: opacity(0); + } &:hover { - background-color: #bdddf5; + .treeView-background { + filter: opacity(0.2) !important; + } } + //align-items: center; ::-webkit-scrollbar { @@ -140,6 +154,7 @@ opacity: 0.75; pointer-events: all; cursor: pointer; + z-index: 1; > svg { margin-left: 0.25rem; |
