Skip to content
Snippets Groups Projects

Support multiple scss include paths

Merged Dennis Ahrens requested to merge support_scss_include_paths into master
4 files
+ 57
14
Compare changes
  • Side-by-side
  • Inline

Files

+ 11
0
@@ -14,3 +14,14 @@ PIWIK_SITE_ID = None
@@ -14,3 +14,14 @@ PIWIK_SITE_ID = None
# 'f4' - light blue for faculty 4, "Wirtschaft und Informatik" - rgb(220, 50, 5)
# 'f4' - light blue for faculty 4, "Wirtschaft und Informatik" - rgb(220, 50, 5)
# 'f5' - light blue for faculty 5, "Diakonie, Gesundheit und Soziales" - rgb(210, 60, 150)
# 'f5' - light blue for faculty 5, "Diakonie, Gesundheit und Soziales" - rgb(210, 60, 150)
COLOR_SCHEME = 'service'
COLOR_SCHEME = 'service'
 
 
# need some dependecies already available in another app for your own scss stuff?
 
# no problem - by default we already add the hshassets/assets/sass/lib for you
 
# but you might define your own, just add your tuple like this:
 
# ('app_name', ['path/relative/to/appname/assets', 'another/relative/to/appname/assets']),
 
# NOTE: the app must be added to INSTALLED_APPS
 
# TODO: if you provide a str instead of tuple this path might be treated absolute or rel to project root!
 
# read utils.get_scss_include_paths() for further information
 
SCSS_INCLUDE_PATHS = [
 
('hshassets', ['sass/lib/']),
 
]
 
\ No newline at end of file
Loading