Style a QToolBoxs Page with QSS: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(clean-up)
 
(2 intermediate revisions by 2 users not shown)
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


= Style a QToolBoxs Page with QSS =
<code>
QToolBox > QWidget { }
</code>


== Solution ==
But that won't work. The correct way to do it is


Targeting a QToolBox's page widget with QSS selectors can be tricky. Our intuitive mind would try <code>QToolBox &gt; QWidget { }<code> But that won't work. '''The correct way to do it is''' <code>QToolBox &gt; QScrollArea &gt; QWidget &gt; QWidget { }<code>
<code>
 
QToolBox > QScrollArea > QWidget > QWidget { }
== Why? ==
</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 { }