postcss / postcss-custom-properties

Use Custom Properties in CSS
https://postcss.github.io/postcss-custom-properties
MIT License
596 stars 77 forks source link

Incorrect output for undefined var (should be untouched) #16

Closed MoOx closed 9 years ago

MoOx commented 9 years ago
* {
  background: linear-gradient(var(--a), var(--b));
}

gives

* {
  background: linear-gradient(linear-gradient(var(--a), var(--b)), , var(--b)));
}

This is totally unexpected :(

MoOx commented 9 years ago

Closed by 93f0d5b3fdaeed7ed9d62723bb10c5496724b2d1