Hello,

I'm customizing the theme of my application with QSS and the QScrollBar page area is showing an undesired checkboard pattern:

QScrollBar.png

The pattern is a checkboard of the desired background color and white. I have no idea where this white is coming from!

This is the shortest QScrollBar qss code that reproduced the issue:

Qt Code:
  1. {
  2. background-color: rgb(65,65,65);
  3. border: 2px solid rgb(50,50,50);
  4. }
To copy to clipboard, switch view to plain text mode 

Does anybody know what is the QSS property for the white color? Or for turning off the checkboard pattern?

Thank you!