summaryrefslogtreecommitdiffstats
path: root/deluge/ui/web/resources/themes/templates/resources/sass/config.rb
diff options
context:
space:
mode:
Diffstat (limited to 'deluge/ui/web/resources/themes/templates/resources/sass/config.rb')
-rw-r--r--deluge/ui/web/resources/themes/templates/resources/sass/config.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/deluge/ui/web/resources/themes/templates/resources/sass/config.rb b/deluge/ui/web/resources/themes/templates/resources/sass/config.rb
new file mode 100644
index 000000000..87ed40a1d
--- /dev/null
+++ b/deluge/ui/web/resources/themes/templates/resources/sass/config.rb
@@ -0,0 +1,22 @@
+# $ext_path: This should be the path of where the ExtJS SDK is installed
+# Generally this will be in a lib/extjs folder in your applications root
+# <root>/lib/extjs
+$ext_path = "../../lib/extjs"
+
+# sass_path: the directory your Sass files are in. THIS file should also be in the Sass folder
+# Generally this will be in a resources/sass folder
+# <root>/resources/sass
+sass_path = File.dirname(__FILE__)
+
+# css_path: the directory you want your CSS files to be.
+# Generally this is a folder in the parent directory of your Sass files
+# <root>/resources/css
+css_path = File.join(sass_path, "..", "css")
+
+# output_style: The output style for your compiled CSS
+# nested, expanded, compact, compressed
+# More information can be found here http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#output_style
+output_style = :compressed
+
+# We need to load in the Ext4 themes folder, which includes all it's default styling, images, variables and mixins
+load File.join(File.dirname(__FILE__), $ext_path, 'resources', 'themes')