Skip to content
This repository has been archived by the owner on Apr 17, 2020. It is now read-only.

Commit

Permalink
Move assets for new assets convention in spree 2.2 see: spree/spree#4050
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Vidaurre authored and radar committed Jan 6, 2014
1 parent d679fd8 commit bcb4f54
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 5 deletions.
File renamed without changes
2 changes: 1 addition & 1 deletion app/assets/stylesheets/spree/fancy/components/_slider.scss
@@ -1,6 +1,6 @@
#subheader {
@include single-box-shadow(darken($c_green, 10), 0, 0, 15px, 0, true);
// background: image-url('store/subheader-bg.png') repeat center;
// background: image-url('spree/fancy/subheader-bg.png') repeat center;
background-color: lighten($c_green, 5);
color: white;
border-top: 5px solid lighten($c_green, 40);
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/spree/fancy/shared/_layout.scss
Expand Up @@ -172,7 +172,7 @@ ul#products li {

footer#footer {
@include single-box-shadow(darken($c_blue, 10), 0, 0, 15px, 0, true);
// background: image-url("store/footer-bg.png") repeat center;
// background: image-url("spree/fancy/footer-bg.png") repeat center;
background-color: lighten($c_blue, 5);
margin-top: 30px;
border-top: 5px solid lighten($c_blue, 30);
Expand Down
@@ -1,2 +1,2 @@
<!-- insert_before 'erb:contains("csrf_meta_tags")'-->
<%= stylesheet_link_tag 'store/print', :media => 'print' %>
<%= stylesheet_link_tag 'spree/fancy/print', :media => 'print' %>
2 changes: 1 addition & 1 deletion app/views/spree/shared/_footer.html.erb
Expand Up @@ -2,7 +2,7 @@
<div class="container">

<div class="four columns">
<%= image_tag "store/logo-white.png", :alt => "Spree Demo Theme", :id => "footer-logo" %>
<%= image_tag "spree/fancy/logo-white.png", :alt => "Spree Demo Theme", :id => "footer-logo" %>
<br>
<br>
<div class="phone">
Expand Down
2 changes: 1 addition & 1 deletion lib/spree_fancy/engine.rb
Expand Up @@ -12,7 +12,7 @@ class Engine < Rails::Engine
end

initializer :assets do |config|
Rails.application.config.assets.precompile += %w( store/print.css )
Rails.application.config.assets.precompile += %w( spree/fancy/print.css )
end

def self.activate
Expand Down

0 comments on commit bcb4f54

Please sign in to comment.