OLD | NEW |
---|---|
1 require 'compass/import-once/activate' | 1 require 'compass/import-once/activate' |
jcgregorio
2015/02/11 12:49:11
I'm not sure how much SCSS is going to be needed o
humper
2015/02/11 13:17:51
OK -- I mainly use SCSS to support nesting; I find
| |
2 require 'bootstrap-sass' | |
3 # Require any additional compass plugins here. | 2 # Require any additional compass plugins here. |
4 | 3 |
5 # Set this to the root of your project when deployed: | 4 # Set this to the root of your project when deployed: |
6 http_path = "/" | 5 http_path = "/" |
7 css_dir = "css" | 6 css_dir = "stylesheets" |
8 sass_dir = "sass" | 7 sass_dir = "sass" |
9 images_dir = "img" | 8 images_dir = "images" |
10 javascripts_dir = "js" | 9 javascripts_dir = "javascripts" |
11 | 10 |
12 # You can select your preferred output style here (can be overridden via the com mand line): | 11 # You can select your preferred output style here (can be overridden via the com mand line): |
13 # output_style = :expanded or :nested or :compact or :compressed | 12 # output_style = :expanded or :nested or :compact or :compressed |
14 | 13 |
15 output_style = :compressed | |
16 | |
17 # To enable relative paths to assets via compass helper functions. Uncomment: | 14 # To enable relative paths to assets via compass helper functions. Uncomment: |
18 # relative_assets = true | 15 # relative_assets = true |
19 | 16 |
20 # To disable debugging comments that display the original location of your selec tors. Uncomment: | 17 # To disable debugging comments that display the original location of your selec tors. Uncomment: |
21 # line_comments = false | 18 # line_comments = false |
22 | 19 |
23 | 20 |
24 # If you prefer the indented syntax, you might want to regenerate this | 21 # If you prefer the indented syntax, you might want to regenerate this |
25 # project again passing --syntax sass, or you can uncomment this: | 22 # project again passing --syntax sass, or you can uncomment this: |
26 # preferred_syntax = :sass | 23 # preferred_syntax = :sass |
27 # and then run: | 24 # and then run: |
28 # sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass | 25 # sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass |
OLD | NEW |