We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried using --balloon-arrow: none; but it doesn't seem like that's a supported feature.
--balloon-arrow: none;
Thanks.
The text was updated successfully, but these errors were encountered:
hey !!! Do you want to remove arrow of tooltip?
Sorry, something went wrong.
This would be a feature request, I believe, but in the meantime, you can hide the arrow yourself, in your own stylesheet:
globally: CSS: [aria-label][data-balloon-pos]:before { display: none !important; }
[aria-label][data-balloon-pos]:before { display: none !important; }
or for specific elements by class: CSS: [aria-label][data-balloon-pos].no-arrow:before { display: none !important; }
[aria-label][data-balloon-pos].no-arrow:before { display: none !important; }
HTML: <div aria-label="I have no arrow" data-balloon-pos="up" class="no-arrow" ... >
<div aria-label="I have no arrow" data-balloon-pos="up" class="no-arrow" ... >
No branches or pull requests
I tried using
--balloon-arrow: none;
but it doesn't seem like that's a supported feature.Thanks.
The text was updated successfully, but these errors were encountered: