Merge pull request #3093 from urbanrotnik/ur-sci-5388

Set height on wholerow-clicked element [SCI-5388]
This commit is contained in:
Urban Rotnik 2021-01-19 10:24:39 +01:00 committed by GitHub
commit 706ca4b118
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,21 +1,25 @@
@import "constants";
.folders-tree-container {
--row-height: 36px;
background-color: $color-concrete;
border-radius: 4px;
height: 250px;
overflow: auto;
padding: .5em;
--row-height: 36px;
.jstree-wholerow-hovered {
background: $color-alto;
border-radius: 4px;
height: var(--row-height);
margin-top: -2px;
}
.jstree-wholerow-clicked {
background: $color-white;
border-radius: 4px;
height: var(--row-height);
margin-top: -2px;
}
.jstree-search {