mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 09:36:27 +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
@@ -7,6 +7,9 @@
|
||||
### Changed
|
||||
- Improved syntax highlighting for f-strings, operators and numeric literals.
|
||||
|
||||
### Fixed
|
||||
- Fixed clipping of code completion popup by terminal.
|
||||
|
||||
## [2.1.0-beta.2] - 2022-12-26
|
||||
|
||||
### Changed
|
||||
|
||||
+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