draggable splitter on mainscreen

This commit is contained in:
Jan Prochazka
2021-02-28 09:27:57 +01:00
parent 1c0a8cad56
commit f30bd0a894
6 changed files with 77 additions and 6 deletions

View File

@@ -10,6 +10,24 @@ body {
-moz-osx-font-smoothing: grayscale;
}
.horizontal-split-handle {
background-color: var(--theme-border);
width: var(--dim-splitter-thickness);
cursor: col-resize;
}
.horizontal-split-handle:hover {
background-color: var(--theme-bg-2);
}
.vertical-split-handle {
background-color: var(--theme-border);
height: var(--dim-splitter-thickness);
cursor: row-resize;
}
.vertical-split-handle:hover {
background-color: var(--theme-bg-2);
}
/* html, body {
position: relative;
width: 100%;