mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Tooltip: Set tooltip of active panel to front of zIndex (with object syntax emotion CSS) (#71925)
This commit is contained in:
@@ -327,7 +327,7 @@ export function positionTooltip(u: uPlot, bbox: DOMRect) {
|
||||
}
|
||||
|
||||
const getStyles = (theme: GrafanaTheme2) => ({
|
||||
tooltipWrapper: css`
|
||||
z-index: ${theme.zIndex.portal + 1} !important;
|
||||
`,
|
||||
tooltipWrapper: css({
|
||||
'z-index': theme.zIndex.portal + 1 + ' !important',
|
||||
}),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user