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.
DATA_URI
1 parent 11d66cf commit 3ee355aCopy full SHA for 3ee355a
CSSObject/rules/Rule.js
@@ -79,7 +79,7 @@ class Rule {
79
let val = values.replace(/[)]/g, '')
80
let [ name, value ] = val.split(/\((.+)/).map(v => v.trim())
81
value = this.important(value)
82
- .split(value.includes(ICSS.COMMA)? ICSS.COMMA:" ")
+ .split(!value.startsWith(ICSS.DATA_URI.KEY) && value.includes(ICSS.COMMA) ? ICSS.COMMA:" ")
83
.filter(v => v != ICSS.EMPTY).map(v => v.trim())
84
85
return new FunctionRule(name, value)
0 commit comments