鼠标光标放在工具提示边框下方时闪烁

Mouse cursor flickering when placed just below the border of the tooltip

当我将鼠标移动到工具提示下方时,鼠标光标在 link 指针和计算机指针之间闪烁。

这可以通过更改工具提示的 css 轻松解决。 只需将 Pointer 事件设置为 none。 无论您使用 Angular's/Bootstrap's/PrimeNG's/CSS 工具提示
,这对所有人都有效 如果你使用 CSS
.tooltip { pointer-events: none; }
如果你使用 PrimeNG(pTooltip)
.ui-tooltip { pointer-events: none; }
您只需将它放在工具提示中 class.