Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const Tooltip = ({
height: `${position?.y1 - position?.y0}px`,
display: `${show_tooltip ? 'inline-block' : 'none'}`,
pointerEvents: `${targetable ? 'auto' : 'none'}`,
'--Dash-Tooltip-PointerEvents': targetable ? 'auto' : 'none',
'--Dash-Tooltip-Border-Color': border_color,
'--Dash-Tooltip-Background-Color': background_color,
'--Dash-Tooltip-ZIndex': zindex,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
background: var(--Dash-Tooltip-Background-Color);
white-space: nowrap;
z-index: var(--Dash-Tooltip-ZIndex);
pointer-events: none;
pointer-events: var(--Dash-Tooltip-PointerEvents);
box-shadow: 0px 10px 38px -10px var(--Dash-Shading-Strong),
0px 10px 20px -15px var(--Dash-Shading-Weak);
}
Expand Down
Loading