Hi everybody!
I want to make a GTK3 theme, and this is my first encounter with CSS. So far I understand everything, but there is one thing that is pothering me lately.
I want to set a gradient for a background, and this is how it looks:

and I have been trying to figure it out, but can´t. Here´s what it looks like in css:
Code:
{
background-color: #040404
}
.background {
background-image: -gtk-gradient (linear,
left top, left bottom,
from (alpha (#040404, 1.0)),
to (alpha (#262c32, 1.0)));
}
I tried to set
background-color like this:
Code:
background-color: -gtk-gradient (linear,
left top, left bottom,
from (alpha (#040404, 1.0)),
to (alpha (#262c32, 1.0)));
But I get white background, so is there any way to force
background-color to use gradient like
background-image does?