We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The pipeline option assets.css_rewrite breaks URL-encoded IDs of linear gradients defined within the SVG.
assets.css_rewrite
SVG structure (example):
<svg height="200" width="200"> <defs> <linearGradient id="linear-gradient" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#000" /> <stop offset="100%" stop-color="#fff" /> </linearGradient> </defs> <ellipse cx="100" cy="100" rx="100" ry="100" fill="#ccc" /> </svg>
Before pipeline:
svg { fill: url(#linear-gradient); }
After pipeline:
svg { fill: url(/user/themes/my-theme/css/#linear-gradient); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The pipeline option
assets.css_rewrite
breaks URL-encoded IDs of linear gradients defined within the SVG.SVG structure (example):
Before pipeline:
After pipeline:
The text was updated successfully, but these errors were encountered: