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

Fix border radius [SCI-5388]
This commit is contained in:
Urban Rotnik 2021-01-14 14:05:20 +01:00 committed by GitHub
commit 7cd85d8e9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,9 +2,11 @@
.folders-tree-container {
background-color: $color-concrete;
border-radius: 4px;
height: 250px;
overflow: auto;
padding: .5em;
--row-height: 36px;
.jstree-wholerow-hovered {
background: $color-alto;
@ -22,6 +24,26 @@
font-weight: unset;
}
.jstree-leaf {
height: var(--row-height);
.jstree-clicked {
height: var(--row-height);
}
.jstree-hovered {
height: var(--row-height);
}
}
.jstree-closed {
line-height: var(--row-height);
}
.jstree-open {
line-height: var(--row-height);
}
.jstree-icon {
&.root-folder {
color: $color-volcano;