[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:
Marta Bondyra 2025-03-28 17:18:07 +01:00 committed by GitHub
parent 05a8703d48
commit f699e4ec20
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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]);