-
Notifications
You must be signed in to change notification settings - Fork 844
New issue
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
[EuiTooltip] [EuiContextMenu] Allowing tooltips to be hoverable #5453
Comments
Thanks, @lucasfcosta for opening this issue. We've been working on establishing guidelines for in-product help. See #2677.
We want to ensure consistency across our products. Making the tooltip hoverable might be one solution but first, we need to see if there are other patterns that we can introduce. |
Adding the ability to hover over the tooltip without dismissing it is required by WCAG 2.1 Section 1.4.13,
We could still enforce or recommend not including interactive content in the tooltips through code and/or the guidelines @miukimiu linked. If we do allow interactive content, we would likely want to wrap it with a focus trap to enable keyboard access, as we use React portals to place tooltip content at the end of the DOM. Last, if we want to look at adding full WCAG 2.1 support, we would need to also address
|
Related #4040 |
I agree with @chandlerprall and recommend we avoid adding links to tooltips. The NNG example in the original description doesn't make allowances for keyboard navigation, which excludes assistive tech users and those who navigate by non-mouse devices. Tooltips are great for disambiguating acronyms or complex instructions. If there are links to longer docs or related actions, I feel it'd be better to have those on the page or available in the menu without having to discover them in a tooltip. |
Saw this in passing and just wanted to add another data point from the Security Solution side of things. We recently had the need for adding a docs link to a tooltip as well and ended up using and Specifically, our need was to provide more details on table columns: Query Time:Last Gap: |
👋 Hey there. This issue hasn't had any activity for 180 days. We'll automatically close it if that trend continues for another week. If you feel this issue is still valid and needs attention please let us know with a comment. |
❌ We're automatically closing this issue due to lack of activity. Please comment if you feel this was done in error. |
Summary
This is a feature request for making tooltips hoverable. Doing so would allow us to have links in tooltips.
Currently, we cannot have links to any help materials in tooltips because they will disappear as soon as users move their mouse out of the target element towards the tooltip.
Please notice that this behaviour could also be available for tooltips within an
EuiContextMenu
for the sake of completeness.Real-world example of how this could be useful
We recently added tooltips to the Uptime app which inform users about the need for permissions (as you can see in elastic/kibana#120379).
@liciavale recommended that we add a link to our documentation so that users can fix the problem described in the tooltip. That link, however, can't be clicked, as the tooltip will disappear when users move the mouse out of the target element towards the tooltip, as you can see in the gif below (please ignore the colour of the link, we could just set its colour to
ghost
):The text was updated successfully, but these errors were encountered: