lacroixdesign/node-bourbon

linear-gradient - problem with compilation

Opened this issue · 1 comments

Hello,

I have following line of code:
+background-image(linear-gradient(transparent 0, $white-darker 100%), linear-gradient(rgba(0, 0, 0, 0.5) 30%, $white-darker 100%)).

In my compiled .css the output is like:

background-image: -webkit-linear-gradient(transparent 0, #FCFCFC 100%), -webkit-linear-gradient(rgba(0, 0, 0, 0.5) 30%, #FCFCFC 100%);
background-image: linear-gradient(to   , #FCFCFC 100%), linear-gradient(rgba(0, 0, 0, 0.5) 30%, #FCFCFC 100%);

So it doesn't work in Firefox because of invalid property value (to , #FCFCFC 100%)

node-bourbon is just the node-sass port. The issue you should be looking at: thoughtbot/bourbon#729.