Commit 27d41c7f2df6c7c5765251aa3facdfd136907c64
1 parent
5afbd8ea
Exists in
master
and in
29 other branches
Fixed images url from shopping_cart plugin
Showing
1 changed file
with
11 additions
and
11 deletions
Show diff stats
plugins/shopping_cart/public/style.css
1 | 1 | @import url(colorbox/colorbox.css); |
2 | 2 | |
3 | 3 | .cart-add-item .ui-icon-cart { |
4 | - background: url("images/button-icon.png") no-repeat scroll left center transparent; | |
5 | - width: 22px; | |
6 | - } | |
7 | - .cart-buy .ui-icon-cart { | |
8 | - background: url("images/button-icon.png") no-repeat scroll left center transparent; | |
9 | - width: 22px; | |
10 | - } | |
4 | + background: url("/plugins/shopping_cart/images/button-icon.png") no-repeat scroll left center transparent; | |
5 | + width: 22px; | |
6 | +} | |
7 | +.cart-buy .ui-icon-cart { | |
8 | + background: url("/plugins/shopping_cart/images/button-icon.png") no-repeat scroll left center transparent; | |
9 | + width: 22px; | |
10 | +} | |
11 | 11 | .cart-add-item .ui-button-text { |
12 | 12 | padding-left: 2.6em; |
13 | 13 | } |
... | ... | @@ -183,10 +183,10 @@ label.error { |
183 | 183 | vertical-align: top; |
184 | 184 | } |
185 | 185 | |
186 | -.controller-profile_editor a.control-panel-shopping-cart-purchase-report {background-image: url(images/control-panel/purchase-report.png)} | |
187 | -.controller-profile_editor .msie6 a.control-panel-shopping-cart-purchase-report {background-image: url(images/control-panel/purchase-report.gif)} | |
188 | -.controller-profile_editor a.control-panel-shopping-cart-icon {background-image: url(images/control-panel/icon.png)} | |
189 | -.controller-profile_editor .msie6 a.control-panel-shopping-cart-icon {background-image: url(images/control-panel/icon.gif)} | |
186 | +.controller-profile_editor a.control-panel-shopping-cart-purchase-report {background-image: url("/plugins/shopping_cart/images/control-panel/purchase-report.png")} | |
187 | +.controller-profile_editor .msie6 a.control-panel-shopping-cart-purchase-report {background-image: url("/plugins/shopping_cart/images/control-panel/purchase-report.gif")} | |
188 | +.controller-profile_editor a.control-panel-shopping-cart-icon {background-image: url("/plugins/shopping_cart/images/control-panel/icon.png")} | |
189 | +.controller-profile_editor .msie6 a.control-panel-shopping-cart-icon {background-image: url("/plugins/shopping_cart/images/control-panel/icon.gif")} | |
190 | 190 | |
191 | 191 | .action-shopping_cart_plugin_myprofile-reports td.order-info { |
192 | 192 | padding: 0px; | ... | ... |