Created
February 22, 2012 13:11
-
-
Save manuelmeurer/1885103 to your computer and use it in GitHub Desktop.
Storefront Stylesheet
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
# Usage in view: | |
# %style{ type: 'text/css' } | |
# = StorefrontStylesheet.new(@storefront).to_css | |
class StorefrontStylesheet | |
def styles | |
[].tap do |styles| | |
styles << %(header { background-color: #{@storefront.layout.header_bg_color}; }) | |
styles << %(body { background-color: #{@storefront.layout.body_bg_color}; }) | |
styles << %(footer { background-color: #{@storefront.layout.footer_bg_color}; }) | |
end.join("\n") | |
end | |
def initialize(storefront) | |
@storefront = storefront | |
end | |
def to_css | |
Sass::Engine.new(self.styles, | |
syntax: :scss, | |
load_paths: Compass.sass_engine_options[:load_paths], | |
style: %w(development test).include?(Rails.env) ? :expanded : :compressed | |
).render.html_safe | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment