mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-25 00:03:27 +08:00
34 lines
542 B
SCSS
34 lines
542 B
SCSS
@import "constants";
|
|
|
|
.folders-tree-container {
|
|
background-color: $color-concrete;
|
|
height: 250px;
|
|
overflow: auto;
|
|
padding: .5em;
|
|
|
|
.jstree-wholerow-hovered {
|
|
background: $color-alto;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.jstree-wholerow-clicked {
|
|
background: $color-white;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.jstree-search {
|
|
color: unset;
|
|
font-style: unset;
|
|
font-weight: unset;
|
|
}
|
|
|
|
.jstree-icon {
|
|
&.root-folder {
|
|
color: $color-volcano;
|
|
}
|
|
|
|
&.icon-folder {
|
|
color: $brand-primary-light;
|
|
}
|
|
}
|
|
}
|