Hi there.

I'm trying to style a QScrollArea with an external style sheet and it doesn't work right.

Qt Code:
  1. QScrollArea, QAbstractScrollArea, QWidget[isScrollArea="true"] {
  2. background-color: black;
  3. background: black;
  4. }
To copy to clipboard, switch view to plain text mode 

With this style I can only influence a thin border of the scroll area. The background color of the main part only reacts to this:

Qt Code:
  1. background-color: black;
  2. background: black;
  3. }
To copy to clipboard, switch view to plain text mode 

As you can see I also tried using QAbstractScrollArea and even a QWidget style reacting to the dynamic property "isScrollArea". Is anyone else having the same problem?