Mercurial > hg > rr-repo
diff sites/all/themes/omega/config.rb @ 0:ff03f76ab3fe
initial version
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Wed, 21 Aug 2013 18:51:11 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sites/all/themes/omega/config.rb Wed Aug 21 18:51:11 2013 +0100 @@ -0,0 +1,48 @@ +## +## This file is only needed for Compass/Sass integration. If you are not using +## Compass, you may safely ignore or delete this file. +## +## If you'd like to learn more about Sass and Compass, see the sass/README.txt +## file for more information. +## + +# Default to development if environment is not set. +saved = environment +if (environment.nil?) + environment = :development +else + environment = saved +end + +# Location of the theme's resources. +css_dir = "css" +sass_dir = "sass" +images_dir = "images" +generated_images_dir = images_dir + "/generated" +javascripts_dir = "js" + +# Require any additional compass plugins installed on your system. +require 'compass-normalize' +require 'rgbapng' +require 'toolkit' +require 'susy' +require 'sass-globbing' + +## +## You probably don't need to edit anything below this. +## + +# You can select your preferred output style here (:expanded, :nested, :compact +# or :compressed). +output_style = (environment == :production) ? :expanded : :nested + +# 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 omega. +relative_assets = true + +# Conditionally enable line comments when in development mode. +line_comments = (environment == :production) ? false : true + +# Output debugging info in development mode. +sass_options = (environment == :production) ? {} : {:debug_info => true}