QComboBox has two different parts the edit box is actually QLineEdit and then PopUp which is I think QListView(Please check this).
Try to set different stylesheet for both the component for given QComboBox and it should work.
see below link which gives list of state of any qt control for stylesheet...
http://qt-project.org/doc/qt-4.8/sty...ml#paletterole
I have tried one example in which combobox font is italics and dropdown font is normal, below is stylesheet used for that...
QComboBox {font-style: italic;}
QComboBox QListView { font-style: normal; }
Bookmarks