annotate 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
rev   line source
danielebarchiesi@0 1 ##
danielebarchiesi@0 2 ## This file is only needed for Compass/Sass integration. If you are not using
danielebarchiesi@0 3 ## Compass, you may safely ignore or delete this file.
danielebarchiesi@0 4 ##
danielebarchiesi@0 5 ## If you'd like to learn more about Sass and Compass, see the sass/README.txt
danielebarchiesi@0 6 ## file for more information.
danielebarchiesi@0 7 ##
danielebarchiesi@0 8
danielebarchiesi@0 9 # Default to development if environment is not set.
danielebarchiesi@0 10 saved = environment
danielebarchiesi@0 11 if (environment.nil?)
danielebarchiesi@0 12 environment = :development
danielebarchiesi@0 13 else
danielebarchiesi@0 14 environment = saved
danielebarchiesi@0 15 end
danielebarchiesi@0 16
danielebarchiesi@0 17 # Location of the theme's resources.
danielebarchiesi@0 18 css_dir = "css"
danielebarchiesi@0 19 sass_dir = "sass"
danielebarchiesi@0 20 images_dir = "images"
danielebarchiesi@0 21 generated_images_dir = images_dir + "/generated"
danielebarchiesi@0 22 javascripts_dir = "js"
danielebarchiesi@0 23
danielebarchiesi@0 24 # Require any additional compass plugins installed on your system.
danielebarchiesi@0 25 require 'compass-normalize'
danielebarchiesi@0 26 require 'rgbapng'
danielebarchiesi@0 27 require 'toolkit'
danielebarchiesi@0 28 require 'susy'
danielebarchiesi@0 29 require 'sass-globbing'
danielebarchiesi@0 30
danielebarchiesi@0 31 ##
danielebarchiesi@0 32 ## You probably don't need to edit anything below this.
danielebarchiesi@0 33 ##
danielebarchiesi@0 34
danielebarchiesi@0 35 # You can select your preferred output style here (:expanded, :nested, :compact
danielebarchiesi@0 36 # or :compressed).
danielebarchiesi@0 37 output_style = (environment == :production) ? :expanded : :nested
danielebarchiesi@0 38
danielebarchiesi@0 39 # To enable relative paths to assets via compass helper functions. Since Drupal
danielebarchiesi@0 40 # themes can be installed in multiple locations, we don't need to worry about
danielebarchiesi@0 41 # the absolute path to the theme from the server omega.
danielebarchiesi@0 42 relative_assets = true
danielebarchiesi@0 43
danielebarchiesi@0 44 # Conditionally enable line comments when in development mode.
danielebarchiesi@0 45 line_comments = (environment == :production) ? false : true
danielebarchiesi@0 46
danielebarchiesi@0 47 # Output debugging info in development mode.
danielebarchiesi@0 48 sass_options = (environment == :production) ? {} : {:debug_info => true}