-
Notifications
You must be signed in to change notification settings - Fork 1.3k
error reading values after opacity #132
Comments
To solve this you can use the unquote functionality: @mixin opacity($opacity) {
opacity: $opacity;
// IE8 filter
filter: unquote("alpha(opacity = (#{$opacity * 100}))");
} |
This is because libsass doesn't support that syntax. |
Closing as it's a libsass problem rather than node-sass |
FYI, I have the same issue. |
@mattheworiordan Just so you know, the issue in libsass is here if you want to keep tabs on it: sass/libsass#154 |
@kennethormandy, thanks. |
Looks like sass/libsass#154 is now fixed! Could update the libsass submodule and give it a try? I tried but I'm getting a million char type-mismatches errors from msbuild. I'm guessing it's not designed to be built in Windows. :S |
It is supposed to work. I am on Windows and am not getting any error |
Ah, interesting. Which compiler? I'm using VS2013. That is, on error I get: Should I create a different issue for the compilation problem? Even if it's just me being a n00b it might be good to keep a log of our troubleshooting. |
I just ran "npm install" and got a bunch of C++ errors. Actually the errors seem to be from two different versions of compilers (VC9 and VC13). I have a lot of compilers on this box! :S |
Actually, you probably shouldn't compile it for Windows because it took me week to make it work. |
@LaurentGoderre and I took the discussion offline to investigate and found there was a misunderstanding. You can "build" node-sass using npm like normal on Windows if you want to just include it in another project, however actually setting up a development environment on Windows is tricky. |
…EADME Add missing gulp.dest to README
also fails at this mixin
"error reading values after "gradient"
The text was updated successfully, but these errors were encountered: