feat(ui): add draggable splitter between search results and diagram panel
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m9s
CI / docker (push) Successful in 1m1s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 37s

This commit is contained in:
hsiegeln
2026-03-28 14:29:19 +01:00
parent 699ef86f8f
commit 91171590e6
2 changed files with 58 additions and 15 deletions

View File

@@ -1,6 +1,5 @@
.splitView {
display: grid;
grid-template-columns: 1fr 1fr;
display: flex;
height: 100%;
overflow: hidden;
}
@@ -8,14 +7,30 @@
.leftPanel {
overflow: auto;
height: 100%;
border-right: 1px solid var(--border);
flex-shrink: 0;
}
.splitter {
width: 5px;
flex-shrink: 0;
cursor: col-resize;
background: var(--border);
transition: background 0.15s;
touch-action: none;
}
.splitter:hover,
.splitter:active {
background: var(--amber);
}
.rightPanel {
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden;
height: 100%;
min-width: 0;
}
.emptyRight {