-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
Tooltip blocks :hover styles #4691
Comments
While the tooltip itself has |
By default the overlay container always has pointer events disabled. Currently the tooltip component also has pointer events disabled. The only thing that has pointer events enabled is the overlay panel element. This can be problematic because as soon as someone hovers of the overlay panel element, the pointer events & hover effects are going to the overlay panel element instead of the element that the tooltip just overlays. Fixes angular#4691
By default the overlay container always has pointer events disabled. Currently the tooltip component also has pointer events disabled. The only thing that has pointer events enabled is the overlay panel element. This can be problematic because as soon as someone hovers of the overlay panel element, the pointer events & hover effects are going to the overlay panel element instead of the element that the tooltip just overlays. Fixes angular#4691
Hey, |
By default the overlay container always has pointer events disabled. Currently the tooltip component also has pointer events disabled. The only thing that has pointer events enabled is the overlay panel element. This can be problematic because as soon as someone hovers of the overlay panel element, the pointer events & hover effects are going to the overlay panel element instead of the element that the tooltip just overlays. Fixes #4691
By default the overlay container always has pointer events disabled. Currently the tooltip component also has pointer events disabled. The only thing that has pointer events enabled is the overlay panel element. This can be problematic because as soon as someone hovers of the overlay panel element, the pointer events & hover effects are going to the overlay panel element instead of the element that the tooltip just overlays. Fixes #4691
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Bug, feature request, or proposal:
Bug
What is the expected behavior?
When hovering an icon with a tooltip the parent that also has a hover should not lose his hover state.
What is the current behavior?
When hovering an icon with a tooltip the parent that also has a hover should loses his hover state.
What are the steps to reproduce?
Start the app.
Put the mouse in the first Home icon from the list.
Start moving the mouse down to hover the other icons and at the same time the other list items.
You'll see that for a little time the list item loses hover state.
Plunker: http://plnkr.co/edit/k2Qqy2IDMOtLgzb6FIch?p=info
What is the use-case or motivation for changing an existing behavior?
It causes a really bad impression for users. In the case of my team we have a list with multiple social icons in each item of the list. So user's are very prone to hover the social icons like mentioned in the steps to reproduce, so that flickering of the hover state doesn't give the best user experience.
Which versions of Angular, Material, OS, TypeScript, browsers are affected?
All I suppose. I'm using the latest atm (beta5)
The text was updated successfully, but these errors were encountered: