mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-01 00:11:29 +00:00
17 lines
313 B
Plaintext
17 lines
313 B
Plaintext
|
/* make image larger so overdraw gets visible */
|
||
|
border {
|
||
|
outline: 0 0 50 50;
|
||
|
}
|
||
|
|
||
|
/* do a non-scissorable clip */
|
||
|
rounded-clip {
|
||
|
clip: 0 10 50 30 / 10;
|
||
|
/* do a scissorable clip that is larger
|
||
|
than the clip before */
|
||
|
child: clip {
|
||
|
clip: 10 0 30 50;
|
||
|
child: color {
|
||
|
color: blue;
|
||
|
}
|
||
|
}
|
||
|
}
|