blob: e44008fcb501fd3ec41a76e006dd2043ebadbf2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# This emulates the result of box-shadow-spread.yaml without with a spread
# amount of 0 compensated by manually inflating and offsetting the rectangle
# and border radii.
---
root:
items:
- type: stacking-context
bounds: [0, 0, 1000, 1000]
items:
- type: box-shadow
bounds: [ 0, 0, 280, 280 ]
color: blue
clip-mode: outset
offset: 300 20
blur-radius: 4
spread-radius: 0
border-radius:
top-left: [0, 0]
top-right: [140, 140]
bottom-left: [140, 140]
bottom-right: [0, 0]
|