From 801cd7e595ac5cf155b40e1bc9c337882da47728 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Fri, 3 Oct 2025 18:25:07 -0400 Subject: [PATCH] Add dedicated CSS class for Continue shopping button - Created .cart-continue-shopping-button class with blue styling - Replaced product-edit-button class with cart-continue-shopping-button - Button now has consistent styling across desktop and mobile --- make_post_sell/static/css/common.css | 6 ++++++ make_post_sell/templates/cart.j2 | 10 ++-------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/make_post_sell/static/css/common.css b/make_post_sell/static/css/common.css index f74871e..5136197 100644 --- a/make_post_sell/static/css/common.css +++ b/make_post_sell/static/css/common.css @@ -404,6 +404,12 @@ button.cart-public-button span.lock { font-size: 24px; } +/* Continue shopping button */ +.cart-continue-shopping-button { + background-color: #98b6fa; + color: white; +} + .coupon-apply-button { background-color: #a3c765; } diff --git a/make_post_sell/templates/cart.j2 b/make_post_sell/templates/cart.j2 index 3b7c591..7242876 100644 --- a/make_post_sell/templates/cart.j2 +++ b/make_post_sell/templates/cart.j2 @@ -177,20 +177,14 @@ -

+
{% endfor %} -
-
-
- Continue shopping + Continue shopping
-
-
- {% endif %}