From 2b968d85ed98ac530fb812590e381ad52fd05eba Mon Sep 17 00:00:00 2001 From: lunyachek Date: Mon, 6 Mar 2023 01:35:13 +0200 Subject: [PATCH 1/2] feat: Add grey color for disabled selects during the form submission --- src/payment/index.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/payment/index.scss b/src/payment/index.scss index 98bdde05e..aadc33d64 100644 --- a/src/payment/index.scss +++ b/src/payment/index.scss @@ -54,6 +54,14 @@ } .basket-section { @extend .mb-5; + + select#cardExpirationMonth, + select#cardExpirationYear, + select#country { + &:disabled { + background-color: #ebebeb !important; + } + } } .summary-row { margin-bottom: map-get($spacers, 3); From 19edd7e148214f334be9678a28477e0fac0b3921 Mon Sep 17 00:00:00 2001 From: Stanislav Lunyachek Date: Tue, 9 Apr 2024 13:45:58 +0300 Subject: [PATCH 2/2] feat: Change color to paragon variable --- src/payment/index.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/payment/index.scss b/src/payment/index.scss index aadc33d64..66c3964de 100644 --- a/src/payment/index.scss +++ b/src/payment/index.scss @@ -59,7 +59,7 @@ select#cardExpirationYear, select#country { &:disabled { - background-color: #ebebeb !important; + background-color: $gray-100 !important; } } }