mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
[Dashboards] Fix panel actions hidden behind top nav in maximize mode (#216290)
## Summary Fixes https://github.com/elastic/kibana/issues/216289
This commit is contained in:
parent
05a8703d48
commit
f699e4ec20
1 changed files with 4 additions and 0 deletions
|
@ -81,6 +81,10 @@ export const useHoverActionStyles = (isEditMode: boolean, showBorder?: boolean)
|
|||
opacity: 1;
|
||||
visibility: visible;
|
||||
transition: none; // apply transition delay on hover out only
|
||||
// when the panel is in fullscreen mode, increase the z-index of the hover actions to be above the sticky nav
|
||||
.kbnGridPanel--expanded & {
|
||||
z-index: ${euiTheme.levels.toast};
|
||||
}
|
||||
}
|
||||
`;
|
||||
}, [euiTheme, showBorder, isEditMode]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue