mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-09 10:20:07 +00:00
30b7545fb5
Verify that a scale of -1 does in fact cause a gradient to go the other direction.
15 lines
228 B
CSS
15 lines
228 B
CSS
@import "reset-to-defaults.css";
|
|
|
|
#reference {
|
|
background: linear-gradient(to bottom, red, yellow);
|
|
}
|
|
|
|
window {
|
|
background: green;
|
|
}
|
|
|
|
#box1 {
|
|
transform: scaleY(-1);
|
|
background: linear-gradient(to bottom, yellow, red);
|
|
}
|