<% project_name = File.basename(Compass.configuration.project_path) %># Require any additional compass plugins here. require 'aurora' # Change this to :production when ready to deploy the CSS to the live server. environment = :development #environment = :production # In development, we can turn on the FireSass-compatible debug_info. firesass = false #firesass = true # Set this to the root of your project when deployed: http_path = "/sites/all/themes/<%= project_name %>" css_dir = "css" sass_dir = "sass" images_dir = "images" javascripts_dir = "js" # Assuming this theme is in sites/*/themes/THEMENAME, you can add the partials # included with a module by uncommenting and modifying one of the lines below: #add_import_path "../../../default/modules/FOO" #add_import_path "../../../all/modules/FOO" #add_import_path "../../../../modules/FOO" # If you prefer the indented syntax, you might want to regenerate this # project again passing --syntax sass, or you can uncomment this: # preferred_syntax = :sass # and then run: # sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass ## ## You probably don't need to edit anything below this. ## # Disable cache busting on image assets asset_cache_buster :none # You can select your preferred output style here (can be overridden via the command line): # output_style = :expanded or :nested or :compact or :compressed output_style = (environment == :development) ? :expanded : :compressed # To enable relative paths to assets via compass helper functions. Since Drupal # themes can be installed in multiple locations, we don't need to worry about # the absolute path to the theme from the server root. relative_assets = true # To disable debugging comments that display the original location of your selectors. Uncomment: line_comments = false # Pass options to sass. For development, we turn on the FireSass-compatible # debug_info if the firesass config variable above is true. sass_options = (environment == :development && firesass == true) ? {:debug_info => true} : {}