css - Changing hover style for QComboBox -


i using qt 5.1.1 trying change background color , text color element when cursor on element. have tried following style sheet:

qcombobox qabstractitemview::item:hover {color: black;background: white } 

but , many tried css code hasn't worked. correct way?

this should work:

qcombobox qabstractitemview {   selection-color: red;   selection-background-color: blue; } 

Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -