We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2ae901 commit 2d9ee18Copy full SHA for 2d9ee18
src/render/stacking-context.ts
@@ -70,7 +70,6 @@ export class ElementPaint {
70
while (parent) {
71
const croplessEffects = parent.effects.filter((effect) => !isClipEffect(effect));
72
if (inFlow || parent.container.styles.position !== POSITION.STATIC || !parent.parent) {
73
- effects.unshift(...croplessEffects);
74
inFlow = [POSITION.ABSOLUTE, POSITION.FIXED].indexOf(parent.container.styles.position) === -1;
75
if (parent.container.styles.overflowX !== OVERFLOW.VISIBLE) {
76
const borderBox = calculateBorderBoxPath(parent.curves);
@@ -81,6 +80,7 @@ export class ElementPaint {
81
80
);
82
}
83
+ effects.unshift(...croplessEffects);
84
} else {
85
effects.unshift(...croplessEffects);
86
0 commit comments