I have buttons that are close to each other that when the tooltip pops out it would block the other buttons out, here's a picture of the said problem:
If I hover the request button below the other one and then tries to hover the button above it, I will end up hovering on the tooltip instead of the button below it.
I can hide the tooltip on hover (see code below) using CSS but it produces a flickering effect when I hover to the next button then ends up not showing the tooltip on that specific next button.
.tooltip:hover {
display: none;
}
So my questions would be:
- Is there a property on
bootstrap-vuethat would only show the tooltip when hovered on the button itself; - or hide the tooltip when hovering the tooltip itself;
- If none, any alternative that would replicate the behavior I wanted without needing to change or edit each existing button on my app (preferred).
