mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 09:36:27 +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
+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