From 2fd7d95d7ede2118aa0ad58eab5319a372fe3d8e Mon Sep 17 00:00:00 2001 From: kay delaney <45561153+kaydelaney@users.noreply.github.com> Date: Mon, 12 Jun 2023 11:53:22 +0100 Subject: [PATCH] PanelChrome: Fix tabbing to panel menu button (#69861) Closes #66256 --- packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx b/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx index 436221d2d41..f3765c73a8e 100644 --- a/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx +++ b/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx @@ -261,14 +261,12 @@ const getStyles = (theme: GrafanaTheme2) => { flexDirection: 'column', '.show-on-hover': { - visibility: 'hidden', opacity: '0', }, '&:focus-visible, &:hover': { // only show menu icon on hover or focused panel '.show-on-hover': { - visibility: 'visible', opacity: '1', }, },