Modal Background Color / Darken / Blur

Hi,

is it possible to do a darken or blur effect to the background of a model ? I dont mean a fullscreen modal. I dont have the correct word for this :-/ I dont mean the modal it self …is it the backdrop?! is there a way ?
cheers

tom :slight_smile:

Yes you can, it’s called the backdrop. I have settings for this in Any Video and Offcanvas Helper. Offcanvas actually works like a modal.

You will see it in the browser inspector. The backdrop element is only generated in the markup when a modal is open. You will see how it works there.

I try …
thanks

To be added in Class Editor

.modal-backdrop.show {
	background-color: rgba(255, 255, 255, .09);
	opacity:1;
	backdrop-filter:				blur(0px);
	-webkit-backdrop-filter:	blur(0px);
	filter:						blur(0px);
	}

Forgot, in case you never used it, there in Additionnal
Capture d’écran 2024-04-25 à 19.45.00