-
Notifications
You must be signed in to change notification settings - Fork 87
Description
In Magento RWD the folder structure designed to work as an overriding (fallback) model where the RWD template remains untouched while the user-made changes will only override the original files in a parallel folder topology. This model applies to the scss/ folder which holds the stylesheets that need to be compiled by compass. By writing an add_import_path to the config.rb makes this possible to work ( Sass Fallback Structure - http://devdocs.magento.com/guides/m1x/ce19-ee114/RWD_dev-guide.html#advanced ) however compass's watch doesn't seem to honor this model and won't recognize the new files as changes, so the compile will never occure. The watch appears to work on the original file structure only. I can manually force a recompile by using Compass.app's menu which applies the changes immediately since config.rb directs Sass to apply the fallback model.