From 8acb034aa6c838a2b70cddcc2e812da09123b39d Mon Sep 17 00:00:00 2001 From: Bogdan Date: Mon, 4 Sep 2023 20:29:03 +0300 Subject: [PATCH] Use not allowed cursor for disabled select options (cherry picked from commit 229a4bba05d1f42089aa92b1d938747e152590b2) --- frontend/src/Components/Form/EnhancedSelectInputOption.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/Components/Form/EnhancedSelectInputOption.css b/frontend/src/Components/Form/EnhancedSelectInputOption.css index 8dcfa25d5..d7f0e861b 100644 --- a/frontend/src/Components/Form/EnhancedSelectInputOption.css +++ b/frontend/src/Components/Form/EnhancedSelectInputOption.css @@ -9,6 +9,10 @@ &:hover { background-color: var(--inputHoverBackgroundColor); } + + &.isDisabled { + cursor: not-allowed; + } } .optionCheck {