danielebarchiesi@0: ## danielebarchiesi@0: ## This file is only needed for Compass/Sass integration. If you are not using danielebarchiesi@0: ## Compass, you may safely ignore or delete this file. danielebarchiesi@0: ## danielebarchiesi@0: ## If you'd like to learn more about Sass and Compass, see the sass/README.txt danielebarchiesi@0: ## file for more information. danielebarchiesi@0: ## danielebarchiesi@0: danielebarchiesi@0: # Default to development if environment is not set. danielebarchiesi@0: saved = environment danielebarchiesi@0: if (environment.nil?) danielebarchiesi@0: environment = :development danielebarchiesi@0: else danielebarchiesi@0: environment = saved danielebarchiesi@0: end danielebarchiesi@0: danielebarchiesi@0: # Location of the theme's resources. danielebarchiesi@0: css_dir = "css" danielebarchiesi@0: sass_dir = "sass" danielebarchiesi@0: images_dir = "images" danielebarchiesi@0: generated_images_dir = images_dir + "/generated" danielebarchiesi@0: javascripts_dir = "js" danielebarchiesi@0: danielebarchiesi@0: # Require any additional compass plugins installed on your system. danielebarchiesi@0: require 'compass-normalize' danielebarchiesi@0: require 'rgbapng' danielebarchiesi@0: require 'toolkit' danielebarchiesi@0: require 'susy' danielebarchiesi@0: require 'sass-globbing' danielebarchiesi@0: danielebarchiesi@0: ## danielebarchiesi@0: ## You probably don't need to edit anything below this. danielebarchiesi@0: ## danielebarchiesi@0: danielebarchiesi@0: # You can select your preferred output style here (:expanded, :nested, :compact danielebarchiesi@0: # or :compressed). danielebarchiesi@0: output_style = (environment == :production) ? :expanded : :nested danielebarchiesi@0: danielebarchiesi@0: # To enable relative paths to assets via compass helper functions. Since Drupal danielebarchiesi@0: # themes can be installed in multiple locations, we don't need to worry about danielebarchiesi@0: # the absolute path to the theme from the server omega. danielebarchiesi@0: relative_assets = true danielebarchiesi@0: danielebarchiesi@0: # Conditionally enable line comments when in development mode. danielebarchiesi@0: line_comments = (environment == :production) ? false : true danielebarchiesi@0: danielebarchiesi@0: # Output debugging info in development mode. danielebarchiesi@0: sass_options = (environment == :production) ? {} : {:debug_info => true}