From 32363fc78cda286684677a144163243ae109f0ce Mon Sep 17 00:00:00 2001 From: lunyachek Date: Mon, 6 Mar 2023 01:35:13 +0200 Subject: [PATCH] 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);