From 9c26d23cb5d0917fdbb8c35b39a4fcb34914e22a Mon Sep 17 00:00:00 2001 From: Will Marshall Date: Wed, 19 Mar 2014 10:48:49 +1100 Subject: [PATCH] Greying the buttons like a boss --- app/views/spree/orders/edit.html.haml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/spree/orders/edit.html.haml b/app/views/spree/orders/edit.html.haml index c9b97b7331..d91efc9483 100644 --- a/app/views/spree/orders/edit.html.haml +++ b/app/views/spree/orders/edit.html.haml @@ -46,12 +46,12 @@ #empty-cart.columns.large-9{"data-hook" => ""} = form_tag empty_cart_path, :method => :put do #clear_cart_link{"data-hook" => ""} - = link_to "Continue Shopping", main_app.shop_path, class: "button primary checkout" + = link_to "Continue Shopping", main_app.shop_path, class: "button secondary" = t(:or) - = submit_tag t(:empty_cart), :class => 'button gray' + = submit_tag t(:empty_cart), :class => 'button secondary' .columns.large-1 - = button_tag :class => 'primary', :id => 'update-button' do + = button_tag :class => 'secondary', :id => 'update-button' do = t(:update) .columns.large-2 = link_to "Checkout", main_app.shop_checkout_path, class: "button checkout primary", id: "checkout-link"