diff --git a/app/assets/stylesheets/shared/jstree_override.scss b/app/assets/stylesheets/shared/jstree_override.scss index b619d133e..5c68466bd 100644 --- a/app/assets/stylesheets/shared/jstree_override.scss +++ b/app/assets/stylesheets/shared/jstree_override.scss @@ -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;