mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-06 11:57:16 +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";
|
@import "constants";
|
||||||
|
|
||||||
.folders-tree-container {
|
.folders-tree-container {
|
||||||
|
--row-height: 36px;
|
||||||
background-color: $color-concrete;
|
background-color: $color-concrete;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
height: 250px;
|
height: 250px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding: .5em;
|
padding: .5em;
|
||||||
--row-height: 36px;
|
|
||||||
|
|
||||||
.jstree-wholerow-hovered {
|
.jstree-wholerow-hovered {
|
||||||
background: $color-alto;
|
background: $color-alto;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
height: var(--row-height);
|
||||||
|
margin-top: -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jstree-wholerow-clicked {
|
.jstree-wholerow-clicked {
|
||||||
background: $color-white;
|
background: $color-white;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
height: var(--row-height);
|
||||||
|
margin-top: -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jstree-search {
|
.jstree-search {
|
||||||
|
|
Loading…
Add table
Reference in a new issue