I've just upgraded SASS and Compass to fix a problem where the CSS wasn't compiling. All I did was:
gem uninstall sass
gem install sass --no-ri --no-rdoc
gem install compass
After doing that and executing grunt
, the CSS now compiles but with the following warning:
WARNING: Compass has changed how browser support is configured. The following configuration
variables are no longer supported: $experimental-support-for-svg.
Details: http://compass-style.org/help/documentation/tuning-vendor-prefixes/
That link isn't any use, it doesn't tell me anything about the variable that is no longer supported.
I don't understand what $experimental-support-for-svg
is and I can't understand why this is used in the sass stylesheets that I'm working with.
Can I safely ignore this or is this going to cause a style problem with another browser?