Kronuz / pyScss

pyScss, a Scss compiler for Python
MIT License
582 stars 141 forks source link

`linear-gradient` Compass function is broken #137

Closed eevee closed 11 years ago

eevee commented 11 years ago

It breaks legal and simple syntax for some reason, e.g.:

$ python -mscss <<< "background: linear-gradient(#fff 20%, #eee 50%)"
background:linear-gradient(#fff 0%, #eee 50%)

20% was rewritten to 0%; what?

(May have back-compat implications? Unclear.)

eevee commented 11 years ago

95