mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-31 03:59:51 +08:00
Merge pull request #3080 from urbanrotnik/ur-sci-5388
Fix border radius [SCI-5388]
This commit is contained in:
commit
7cd85d8e9d
1 changed files with 22 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue