I have an issue compiling with [email protected].
$ node_modules/.bin/node-sass app/sass/app.scss -o app/style/app.css
Yields: error: argument$colorofgrayscale($color)must be a color. Where the offending (and obviously valid) line is:
.myClass {
-webkit-filter: grayscale(1);
}
app.scss compiles fine with Ruby Sass. If I comment out the above line, Node Sass can compile the rest of the file(s).
https://github.com/andrew/node-sass#reporting-sass-compilation-and-syntax-issues
Sorry should've seen that, 11" screen had it out of sight :P
Don't sweat it :smile:. You've reported the issue upstream with libsass, which is where it should be, so everything is right with the world.
You can avoid this problem using the following syntax:
a{
-webkit-filter: unquote("grayscale(100%)");
}
@sandropaganotti Thanks, class and effective (y)
@sandropaganotti Thanks, class and effective (y)
Most helpful comment
You can avoid this problem using the following syntax: