mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-29 06:51:10 +00:00
2e669099a6
Related: #6389
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;
|
|
}
|
|
}
|
|
} |