feat(ui): support invisible resizable split separators

This commit is contained in:
Codex
2026-09-25 19:13:39 +03:00
parent a5a73c8753
commit 9aa6f949b0
6 changed files with 28 additions and 1 deletions
+6
View File
@@ -3111,6 +3111,12 @@ textarea.nodedc-field__control {
box-shadow: 0 0 0 2px rgb(var(--nodedc-accent-rgb) / 0.16);
}
/* Keep the full hit area and keyboard focus cue without a visible divider. */
.nodedc-split-pane[data-separator-appearance="invisible"] > .nodedc-split-pane__separator:not(:focus-visible)::before {
background: transparent;
box-shadow: none;
}
.nodedc-split-pane[data-dragging="true"] {
user-select: none;
}