Hi @mcyann
Thanks for the screenshots. I can see what you mean – the background behind the Popup is blurred via CSS in most browsers.
Specifically, the plugin applies a backdrop-filter
which is not implemented in Firefox and IE – all other browsers support this style already. IE will never support this, and FF will eventually implement it, though we cannot predict how long that will take.
Unfortunately, this is a technical limitation of the browser that we cannot bypass. But it’s a matter of time before FF will support that feature and also blur the background.
Btw, this is the exact CSS rule which applies the blur effect, in case you want to disable it for all browsers:
.da-overlay-visible .da-overlay {
// default effect:
backdrop-filter: saturate(180%) blur(5px);
// disable background effect:
backdrop-filter: none;
}
Hope that helps ??
Happy Popup-ing, Philipp