Style a QToolBoxs Page with QSS
From Qt Wiki
Revision as of 10:23, 24 February 2015 by Maintenance script (talk | contribs)
Style a QToolBoxs Page with QSS
Solution
Targeting a QToolBox's page widget with QSS selectors can be tricky. Our intuitive mind would try QToolBox > QWidget { }
But that won't work. The correct way to do it is
QToolBox > QScrollArea > QWidget > QWidget { }
Why?