From 5f69accafa7a299c2f5715b126ab011a016dc9cc Mon Sep 17 00:00:00 2001 From: Stanislav Date: Fri, 20 Sep 2024 20:28:24 +0300 Subject: [PATCH] feat: Add grey color for disabled selects during the form submission (#865) --- src/payment/index.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/payment/index.scss b/src/payment/index.scss index 98bdde05e..66c3964de 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: $gray-100 !important; + } + } } .summary-row { margin-bottom: map-get($spacers, 3);