Hi,

Is it possible to style QPushButtons separately from a qss stylesheet whether if it has an icon applied or not? Something like:
Qt Code:
  1. QPushButton[hasIcon="true"] {
  2. background-color: green;
  3. }
  4. QPushButton[hasIcon="false"] {
  5. background-color: red;
  6. }
To copy to clipboard, switch view to plain text mode 

Thank you