|
44 | 44 |
|
45 | 45 | &:where([data-avatar-count='1'][data-shape='square']) .AvatarItem { |
46 | 46 | /* stylelint-disable-next-line primer/box-shadow */ |
47 | | - box-shadow: 1px 0 rgba(0, 0, 0, 1); |
| 47 | + box-shadow: 1px 0 rgb(0, 0, 0, 1); |
48 | 48 | } |
49 | 49 |
|
50 | 50 | &:where([data-avatar-count='1'][data-shape='square'][data-align-right]) .AvatarItem { |
51 | 51 | /* stylelint-disable-next-line primer/box-shadow */ |
52 | | - box-shadow: -1px 0 rgba(0, 0, 0, 1); |
| 52 | + box-shadow: -1px 0 rgb(0, 0, 0, 1); |
53 | 53 | } |
54 | 54 |
|
55 | 55 | &:where([data-avatar-count='2']) { |
|
145 | 145 |
|
146 | 146 | .AvatarStack:where([data-shape='square']) &:is(img) { |
147 | 147 | /* stylelint-disable-next-line primer/box-shadow */ |
148 | | - box-shadow: 1px 0 rgba(255, 255, 255, 1); |
| 148 | + box-shadow: 1px 0 rgb(255, 255, 255, 1); |
149 | 149 | } |
150 | 150 |
|
151 | 151 | .AvatarStack:where([data-shape='square'][data-align-right]) &:is(img) { |
152 | 152 | /* stylelint-disable-next-line primer/box-shadow */ |
153 | | - box-shadow: -1px 0 rgba(255, 255, 255, 1); |
| 153 | + box-shadow: -1px 0 rgb(255, 255, 255, 1); |
154 | 154 | } |
155 | 155 |
|
156 | 156 | &:first-child { |
|
184 | 184 | /* Circular mask */ |
185 | 185 | .AvatarStack:where([data-shape='circle']) &:nth-child(n + 2) { |
186 | 186 | /* stylelint-disable-next-line declaration-property-value-no-unknown */ |
187 | | - mask-image: radial-gradient(at 50% 50%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 71%), linear-gradient(rgb(0, 0, 0) 0 0); |
| 187 | + mask-image: radial-gradient(at 50% 50%, rgb(0, 0, 0) 70%, rgb(0, 0, 0, 0) 71%), linear-gradient(rgb(0, 0, 0) 0 0); |
188 | 188 | } |
189 | 189 |
|
190 | 190 | /* Square mask */ |
191 | 191 | .AvatarStack:where([data-shape='square']) &:nth-child(n + 2) { |
192 | 192 | /* stylelint-disable-next-line declaration-property-value-no-unknown */ |
193 | | - mask-image: linear-gradient(at 50% 50%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 71%), linear-gradient(rgb(0, 0, 0) 0 0); |
| 193 | + mask-image: linear-gradient(at 50% 50%, rgb(0, 0, 0) 70%, rgb(0, 0, 0, 0) 71%), linear-gradient(rgb(0, 0, 0) 0 0); |
194 | 194 | } |
195 | 195 |
|
196 | 196 | /* Cascade variant override for nth-child(n + 3) */ |
|
0 commit comments