Hi!
I apologize in advance for my lack of knowledge in this area. I'm working with a web designer who is using Compass to manage stylesheets and he has no problem compiling the .scss files into css. When I tried to run it, however, I get this error: "Syntax error: Undefined mixin 'linear-gradient'". I'm using Compass 0.12.1 and Sass 3.1.15. I run compass with "compass watch". The app I'm working on is a Django app. I've seen this error has come up in the newsgroup, but I haven't been able to narrow down the problem. Thanks for your help!
-Amit
--
You received this message because you are subscribed to the Google Groups "Compass" group.
To view this discussion on the web visit https://groups.google.com/d/msg/compass-users/-/HME_68hi6AUJ.
To post to this group, send email to compas...@googlegroups.com.
To unsubscribe from this group, send email to compass-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/compass-users?hl=en.
To unsubscribe from this group, send email to compass-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/compass-users/-/GLC-k9MbrgYJ.
To unsubscribe from this group, send email to compass-user...@googlegroups.com.
The linear-gradient mixin was deprecated in 0.11 and you were supposed to stop using it before you upgraded to 0.12. You need to use the new images module which more closely matches the css3 syntax.
Note, if you skipped the 0.11 release and went straight from 0.10 to 0.12, you probably should downgrade, make sure all the deprecation warnings are cleared up, and then upgrade again. You can specify installing a version 0.11 release by passing --version "~> 0.11.0" to the gem install command and you can specify running that version like this:compass _0.11.7_ compile --force
Chris