mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-15 02:54:07 +00:00
editor: fix find widget z-index
When open, the find widget was visible above modal dialogs because of z-index.
This commit is contained in:
committed by
David Lechner
parent
ca50d60b2c
commit
d119cb564e
@@ -6,6 +6,7 @@
|
||||
|
||||
### Fixed
|
||||
- Fixed terminal layout issues when resizing window vertically.
|
||||
- Fixed editor find widget visible over modal dialogs.
|
||||
|
||||
## [2.1.0-beta.3] - 2022-12-28
|
||||
|
||||
|
||||
+16
-4
@@ -102,8 +102,20 @@
|
||||
}
|
||||
}
|
||||
|
||||
// override iOS keyboard button position
|
||||
.monaco-editor .iPadShowKeyboard {
|
||||
right: unset !important;
|
||||
left: 20px;
|
||||
.monaco-editor {
|
||||
// override iOS keyboard button position
|
||||
& .iPadShowKeyboard {
|
||||
right: unset !important;
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
// fix find widget in front of dialogs
|
||||
& .overflow-guard {
|
||||
z-index: bp.$pt-z-index-content - 1;
|
||||
}
|
||||
|
||||
// allow overflow to overlay content outside of editor
|
||||
& .overflowingContentWidget {
|
||||
z-index: bp.$pt-z-index-overlay - 1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user