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
While the Popup is triggered, it's content should show up on the same layer of the triggered component.
The content showed on background layer which is being blurred.
0.67.2
http://codepen.io/eGust/pen/zZXomK
The text was updated successfully, but these errors were encountered:
This appears to be a CSS issue, please post on https://github.com/Semantic-Org/Semantic-UI.
Sorry, something went wrong.
Quick fix for a globals css file:
.blurring.dimmed.dimmable > :not(.dimmer).popup { filter: none; }
Quick fix for a globals css file: .blurring.dimmed.dimmable > :not(.dimmer).popup { filter: none; }
Thanks, it worked for me
The css fix didn't work for me, but adding a custom wrapper with filter: 'none' through the popper prop did.
filter: 'none'
popper
<Popup ... popper={<div style={{ filter: 'none' }}></div>} ... />
No branches or pull requests
Steps
Expected Result
While the Popup is triggered, it's content should show up on the same layer of the triggered component.
Actual Result
The content showed on background layer which is being blurred.
Version
0.67.2
Testcase
http://codepen.io/eGust/pen/zZXomK
The text was updated successfully, but these errors were encountered: