-
Notifications
You must be signed in to change notification settings - Fork 85
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
refactor: include notification container into the overlay stack #8198
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The z-index: 1000
and z-index: 1100
in notification and tooltip styles are probably no longer needed either, but this doesn't need to be addressed by this PR
|
The Firefox test is unrelated to the PR, I'm going to merge without requiring checks to pass. |
This ticket/PR has been released with Vaadin 24.6.0.beta3 and is also targeting the upcoming stable 24.6.0 version. |
Description
Fixes vaadin/flow-components#6836
This is an alternative fix to #8193 as suggested in #8193 (comment)
Adding notification container to the common overlay stack resolves also the issue similar to the one reported in #5748 but for
vaadin-popover
and other overlays that can be technically triggered from buttons inside thevaadin-notification
.Type of change
Note
We also have
_enterModalState()
method in theOverlayStackMixin
- this method isn't called in case of notification container, so that it's still possible to interact with underlyingvaadin-dialog
when the notification is opened from it.