Page 1 of 1

Set opacity of popup background

Posted: Mon Sep 26, 2016 11:41 am
by Deon

Hi

I would like to set the opacity of a popup background

I have tried this but it just makes the background completely transparent.

.ui-dialog {
background: rgb(255,0,0,0.4);
}


Set opacity of popup background

Posted: Mon Sep 26, 2016 12:01 pm
by Serhii Kulibaba

Hello Deon,

Please use CSS below for that:
pre.ui-popup-container div.ui-popup {
background: rgba(255,0,0,0.4);
}/pre


Set opacity of popup background

Posted: Mon Sep 26, 2016 12:56 pm
by Deon

Thank you
Just a small mod
.ui-popup-container .ui-popup {
background: rgba(255,0,0,0.4);
}