Difference between revisions of "Style a QToolBoxs Page with QSS"
From Qt Wiki
AutoSpider (talk | contribs) (Add "cleanup" tag) |
(clean-up) |
||
Line 1: | Line 1: | ||
− | |||
− | |||
[[Category:HowTo]] | [[Category:HowTo]] | ||
+ | Targeting a QToolBox's page widget with QSS selectors can be tricky. Our intuitive mind would try | ||
− | + | <code> | |
− | + | QToolBox > QWidget { } | |
− | + | </code> | |
− | + | But that won't work. The correct way to do it is | |
− | + | <code> | |
+ | QToolBox > QScrollArea > QWidget > QWidget { } | ||
+ | </code> |
Latest revision as of 15:13, 24 March 2016
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 { }