We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6497a63 commit aaf54a1Copy full SHA for aaf54a1
components/dash-core-components/src/components/Tooltip.tsx
@@ -30,6 +30,7 @@ const Tooltip = ({
30
width: `${position?.x1 - position?.x0}px`,
31
height: `${position?.y1 - position?.y0}px`,
32
display: `${show_tooltip ? 'inline-block' : 'none'}`,
33
+ pointerEvents: `${targetable ? 'auto' : 'none'}`,
34
'--Dash-Tooltip-PointerEvents': targetable ? 'auto' : 'none',
35
'--Dash-Tooltip-Border-Color': border_color,
36
'--Dash-Tooltip-Background-Color': background_color,
0 commit comments