Hello hello,
I was playing around with a custom theme and I noticed that enabling flat scroll bars may change the background colour of the different UI elements.
Consider the following simple bit of CSS to reproduce the problem:
Composite * {
background-color: red;
}
Tree {
background-color: blue;
flat-scroll-bar: false;
}
The background colour of my tree appears as blue. However, when I switch flat-scroll-bar to true, background-color: blue no longer takes precedences or may simply be ignored, the background colour of my tree turns to red.
Any idea on what might be happening? Do you know of any CSS trick that would force the background to stay blue?
Thanks in advance!