Hi. I want to set some transparency to a frame and all it child widgets, but without setting a background color. The unique method I know to set transparency is something like:
background-color: rgba(0, 0, 0, 100);
background-color: rgba(0, 0, 0, 100);
To copy to clipboard, switch view to plain text mode
But the background color will be apllied to all child widgets. So, I can do something like:
QFrame#myframe {background-color: rgba(0, 0, 0, 100);}
QFrame#myframe {background-color: rgba(0, 0, 0, 100);}
To copy to clipboard, switch view to plain text mode
But now only the frame is getting the transparency.
Any alternatives to set transparency?
Thanks a lot.
Bookmarks