Can't change font-style or font-weight for anything other than QPushButton using style sheets?
Unsolved
General and Desktop
-
Hi, I have been trying to implement
:hover
and:checked
state for different widgets using Style Sheets:QPushButton:hover, QPushButton:checked{color: red; font-style: oblique}; QCheckBox:hover, QCheckBox:checked{color: red; font-style: oblique}; QRadioButton:hover, QRadioButton:checked{color: red; font-style: oblique}; QSpinBox:hover{color: red; font-style: oblique}; QLineEdit:hover{color: red; font-style: oblique};
The change in
color
appears for all widgets but the change infont-style
only appears forQPushButton
, why? -