mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-27 15:36:39 +08:00
Merge pull request #3093 from urbanrotnik/ur-sci-5388
Set height on wholerow-clicked element [SCI-5388]
This commit is contained in:
commit
706ca4b118
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…
Add table
Reference in a new issue