mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-07 05:03:26 +08:00
Set height on wholerow-clicked element
This commit is contained in:
parent
496c106497
commit
3cf6047dbd
1 changed files with 5 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue