mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
dd1cf1ac0f
When the background-clip of the background is smaller than the background-clip of blended images, not pushing a group is wrong. Test testing exactly that included.
25 lines
615 B
CSS
25 lines
615 B
CSS
* {all: unset; }
|
|
|
|
window {
|
|
background: lime;
|
|
}
|
|
|
|
box {
|
|
background-color: red;
|
|
background-image: linear-gradient(yellow, yellow), linear-gradient(white, white);
|
|
background-clip: border-box, content-box;
|
|
background-size: 50% 100%, 100% 50%;
|
|
background-repeat: no-repeat;
|
|
background-blend-mode: multiply;
|
|
padding: 10px;
|
|
border: 1px solid blue;
|
|
}
|
|
|
|
window#reference box {
|
|
background-image: linear-gradient(red,red), linear-gradient(yellow, yellow);
|
|
background-clip: content-box, border-box;
|
|
background-size: 100% 100%, 50% 100%;
|
|
background-color: transparent;
|
|
background-blend-mode: normal;
|
|
}
|