Skip to content
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

Popup content will be blurred on background of blurring Modal #1545

Closed
eGust opened this issue Apr 5, 2017 · 4 comments
Closed

Popup content will be blurred on background of blurring Modal #1545

eGust opened this issue Apr 5, 2017 · 4 comments
Labels

Comments

@eGust
Copy link

eGust commented Apr 5, 2017

Steps

  1. Modal dimmer='blurring'
  2. Modal.Content contains a Popup

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

@levithomason
Copy link
Member

This appears to be a CSS issue, please post on https://github.com/Semantic-Org/Semantic-UI.

@semireg
Copy link

semireg commented May 30, 2019

Quick fix for a globals css file:

.blurring.dimmed.dimmable > :not(.dimmer).popup {
  filter: none;
}

@OleksandrDanylchenko
Copy link

Quick fix for a globals css file:

.blurring.dimmed.dimmable > :not(.dimmer).popup {
  filter: none;
}

Thanks, it worked for me

@motiwalam
Copy link

motiwalam commented Aug 18, 2022

The css fix didn't work for me, but adding a custom wrapper with filter: 'none' through the popper prop did.

<Popup
   ...
   popper={<div style={{ filter: 'none' }}></div>}
   ...
/>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

5 participants