I feel like an idiot, but I really can't figure it out.
I am using John Long . Sass Twitter Bootstrap converts the usual Twitter Bootstrap elements. Located here on github
Whenever I compile it, I get the following error:
error sass/bootstrap.scss (Line 246 of sass/bootstrap/_mixins.scss: Invalid CSS after "...-shadow($shadow": expected ")", was "...) { ") Sass::SyntaxError on line ["246"] of C: Invalid CSS after "...-shadow($shadow": expected ")", was "...) { "
Here is the syntax he complains about:
// Drop shadows @mixin box-shadow($shadow...) { -webkit-box-shadow: $shadow; -moz-box-shadow: $shadow; box-shadow: $shadow; }
I have never seen this syntax before using dots on a mix.
My question is how to fix this error. This is clearly the problem that I have.
I am using Compass v0.12.2
source share