You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(dimmer): use modern blurring to improve performance
The blurring dimmer is inperformant because every single node inside the dimmable context is blurred separately which takes lots of time.
It also causes positioning glitches when applied (Try the blurring example at fomantic-ui.com/modules/modal.html#dimmer-variations and see the sidebar suddenly vanishes!)
Additionally when used in modals it is not nicely animated when the modal hides.
This PR switches from the old filter approach on each single node to the modern backdrop-filer approach on the dimmer itself only which is much more performant and nicely animates now.
For each browser not supporting this technique, the old behavior will still apply as before.
0 commit comments