diff --git a/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/use_hover_actions_styles.tsx b/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/use_hover_actions_styles.tsx index 2127845f88b13..8cecf52a041a4 100644 --- a/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/use_hover_actions_styles.tsx +++ b/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/use_hover_actions_styles.tsx @@ -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]);