mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 17:45:22 +00:00
app: fix clipping of editor popups
Editor popups like the ones for code completion were getting clipped by the layout pane containers.
This commit is contained in:
committed by
David Lechner
parent
1482e9f197
commit
74f1619eb3
+4
-2
@@ -167,8 +167,10 @@ $dark-splitter-color-hover: color.adjust(
|
||||
}
|
||||
}
|
||||
|
||||
.splitter-layout .layout-pane {
|
||||
overflow: hidden;
|
||||
// we want overflow visible for editor overlays but it breaks resizing
|
||||
// so we can only apply this when not resizing
|
||||
.splitter-layout:not(.layout-changing) > .layout-pane {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
// hide the docs and resize separator
|
||||
|
||||
Reference in New Issue
Block a user