Semantic-ui-react: Popup content will be blurred on background of blurring Modal

Created on 5 Apr 2017  路  3Comments  路  Source: Semantic-Org/Semantic-UI-React

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

invalid

Most helpful comment

Quick fix for a globals css file:

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

All 3 comments

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

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

Was this page helpful?
0 / 5 - 0 ratings