config.rb 1007 B

12345678910111213141516171819202122
  1. # $ext_path: This should be the path of where the ExtJS SDK is installed
  2. # Generally this will be in a lib/extjs folder in your applications root
  3. # <root>/lib/extjs
  4. $ext_path = "../../"
  5. # sass_path: the directory your Sass files are in. THIS file should also be in the Sass folder
  6. # Generally this will be in a resources/sass folder
  7. # <root>/resources/sass
  8. sass_path = File.dirname(__FILE__)
  9. # css_path: the directory you want your CSS files to be.
  10. # Generally this is a folder in the parent directory of your Sass files
  11. # <root>/resources/css
  12. css_path = File.join(sass_path, "..", "css")
  13. # output_style: The output style for your compiled CSS
  14. # nested, expanded, compact, compressed
  15. # More information can be found here http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#output_style
  16. output_style = :nested
  17. # We need to load in the Ext4 themes folder, which includes all it's default styling, images, variables and mixins
  18. load File.join(File.dirname(__FILE__), $ext_path, 'resources', 'themes')