Created
November 19, 2014 15:52
-
-
Save bacalj/20ed17ded743449fefe9 to your computer and use it in GitHub Desktop.
basic compass config what works with wordpress desired style.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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. | |
# | |
# Remember - sass dir has style.scss, and theme dir has style.css for this | |
# | |
# | |
# | |
# 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 | |
# Location of the theme's resources. | |
css_dir = "/" | |
sass_dir = "sass" | |
extensions_dir = "sass-extensions" | |
images_dir = "images" | |
javascripts_dir = "js" | |
# Require any additional compass plugins installed on your system. | |
## | |
## You probably don't need to edit anything below this. | |
## | |
# 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} : {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment