Line | |
---|
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 |
|
---|
6 | # sass_path: the directory your Sass files are in. THIS file should also be in the Sass folder
|
---|
7 | # Generally this will be in a resources/sass folder
|
---|
8 | # <root>/resources/sass
|
---|
9 | sass_path = File.dirname(__FILE__)
|
---|
10 |
|
---|
11 | # css_path: the directory you want your CSS files to be.
|
---|
12 | # Generally this is a folder in the parent directory of your Sass files
|
---|
13 | # <root>/resources/css
|
---|
14 | css_path = File.join(sass_path, "..", "css")
|
---|
15 |
|
---|
16 | # output_style: The output style for your compiled CSS
|
---|
17 | # nested, expanded, compact, compressed
|
---|
18 | # More information can be found here http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#output_style
|
---|
19 | output_style = :nested
|
---|
20 |
|
---|
21 | # We need to load in the Ext4 themes folder, which includes all it's default styling, images, variables and mixins
|
---|
22 | load File.join(File.dirname(__FILE__), $ext_path, 'resources', 'themes')
|
---|
Note:
See
TracBrowser
for help on using the repository browser.