Set Font QListWidget::item with QSS
-
Hello.
I have tried setting the font for the QListWidget::item in the following way:
@QListWidget::item{
font: bold 12pt;
color:red;
}@or for selected item
@QListWidget::item:selected{
font: bold 12pt;
color:red
}@but it's not work. Color is setting, but font doesn't.
Please help.Qt 4.8
-
i'm not sure but i think you are missing the font family in your "font-rule":http://qt-project.org/doc/qt-4.8/stylesheet-reference.html#font.
What happens when you try the following?
@
QListWidget::item
{
font-size: 12pt;
font-weight: bold;
color:red;
}
@ -
Font color changed to red. Font size and weight not change