From e159985aa2907e2c2889853f9295183edc1032ac Mon Sep 17 00:00:00 2001 From: Leon Sorokin Date: Sun, 2 May 2021 13:03:50 -0500 Subject: [PATCH] Tooltip: eliminate flickering when repaint can't keep up (#33609) --- packages/grafana-ui/src/themes/mixins.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/grafana-ui/src/themes/mixins.ts b/packages/grafana-ui/src/themes/mixins.ts index cb6956cccf1..63529376c5c 100644 --- a/packages/grafana-ui/src/themes/mixins.ts +++ b/packages/grafana-ui/src/themes/mixins.ts @@ -64,6 +64,7 @@ export function getFocusStyles(theme: GrafanaThemeV2): CSSObject { // max-width is set up based on .grafana-tooltip class that's used in dashboard export const getTooltipContainerStyles = (theme: GrafanaThemeV2) => ` + pointer-events: none; overflow: hidden; background: ${theme.colors.background.secondary}; box-shadow: ${theme.shadows.z2};