Skip to content

Commit

Permalink
Merge pull request #2288 from gregdaynes/cart-total-background
Browse files Browse the repository at this point in the history
Convert Cart total/subtotal CSS colors to vars
  • Loading branch information
jhawthorn authored Oct 20, 2017
2 parents 6633b8a + 1f6216f commit cf4255b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ $product_body_text_color: #404042 !default;
$product_price_text_color: #252525 !default;
$product_link_text_color: #BBBBBB !default;

$cart_total_background_color: $link_text_color !default;
$cart_total_text_color: #FFFFFF !default;

/*--------------------------------------*/
/* Fonts import from remote
/*--------------------------------------*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -993,10 +993,10 @@ div[data-hook="inside_cart_form"] {
}

.cart-subtotal, .cart-total {
background: #00ADEE;
background: $cart_total_background_color;

td h5 {
color: #fff;
color: $cart_total_text_color;
}
}

Expand Down

0 comments on commit cf4255b

Please sign in to comment.