File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
components/dash-core-components/src/components Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ const Tooltip = ({
3131 height : `${ position ?. y1 - position ?. y0 } px` ,
3232 display : `${ show_tooltip ? 'inline-block' : 'none' } ` ,
3333 pointerEvents : `${ targetable ? 'auto' : 'none' } ` ,
34+ '--Dash-Tooltip-PointerEvents' : targetable ? 'auto' : 'none' ,
3435 '--Dash-Tooltip-Border-Color' : border_color ,
3536 '--Dash-Tooltip-Background-Color' : background_color ,
3637 '--Dash-Tooltip-ZIndex' : zindex ,
Original file line number Diff line number Diff line change 3232 background : var (--Dash-Tooltip-Background-Color );
3333 white-space : nowrap;
3434 z-index : var (--Dash-Tooltip-ZIndex );
35- pointer-events : none ;
35+ pointer-events : var ( --Dash-Tooltip-PointerEvents ) ;
3636 box-shadow : 0px 10px 38px -10px var (--Dash-Shading-Strong ),
3737 0px 10px 20px -15px var (--Dash-Shading-Weak );
3838}
You can’t perform that action at this time.
0 commit comments