gtk2/testsuite/css/style/gradient.css
Matthias Clasen d9a70bc56a Add a CSS style test for gradients
This mainly just tests that gradients are properly
reproduced by gtk_style_context_to_string.
2016-01-04 13:59:48 -05:00

12 lines
288 B
CSS

window {
background-image: linear-gradient(75deg, red, green 20%, blue 40px);
}
box {
background-image: repeating-linear-gradient(to top right, rgba(255,100,60,0.5), magenta 100%);
}
label {
background-image: radial-gradient(farthest-corner at 50% 30px, yellow, red 30%, blue);
}