Fix parameter popover in the events sheet shown behind editor panel title bars (#1822)

This commit is contained in:
Aurélien Vivet
2020-06-18 00:14:23 +02:00
committed by GitHub
parent 77eff757cd
commit 31c8d04def

View File

@@ -19,9 +19,9 @@ const styles = {
minWidth: 300, // Avoid extra small popover for some parameters like relational operator
// When displayed in an events sheet that has Mosaic windows (see `EditorMosaic`) next to it,
// it could be displayed behind them, because they have a z-index of 1 :/ Use a z-index of 2
// then. Only one InlinePopover should be shown at a time anyway.
zIndex: 2,
// it could be displayed behind them, because they have a z-index of 1, and 4 for the window titles :/
// use a z-index of 5 then. Only one InlinePopover should be shown at a time anyway.
zIndex: 5,
},
};