From 899b3e2b0c3c5b8b612adde19df08eae854aa649 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 31 Oct 2023 18:03:00 +0100 Subject: [PATCH] PanelChrome: Fixes z-index issue with status message when hover header is true (#77443) --- packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx b/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx index 474ace6c3ef..4b2bd1c1c17 100644 --- a/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx +++ b/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx @@ -465,7 +465,7 @@ const getStyles = (theme: GrafanaTheme2) => { position: 'absolute', left: 0, top: 0, - zIndex: theme.zIndex.tooltip, + zIndex: 1, }), rightActions: css({ display: 'flex',