Popup transparent

Hello!

can anyone tell me how to make the background of a popup fully transparent?

Now root container has background transparency set, but does not works.

thanks!!

This thread might help, it covers exactly how to target specific Perspective popups using their popup ID, including making only selected popups transparent via "stylesheet.css":

@Sanganak_Kasare has already put you on the right track – I'll just add some details to get you moving quickly towards a solution here.

First, enable the Advanced Stylesheet via a right click on the Styles folder within the Perspective project browser node.

Within that new project resource – target the popup and set the background to transparent. You may also want to remove the default border for a fully transparent effect.

.ia_popup {
    background-color: transparent;
    border: none;
}

That should do it, happy developing!

Note you probably want to require a style class for the rule as well so it doesn't apply to all popups

.psc-YourStylesClassName .ia_popup {

Amazing guys, thanks a lot!!!!

It is impressive how can we combine the CSS in our views.

Where would you put that class ?
If you put it on the popup view's root, that selector should not work.
You'd need to use has(): .ia_popup:has(.psc-yourClass) {...}

Or use ids as described in the post linked above. It's what I used before has was a thing and I got used to it.