From e2a888562746429b37ab2fe8670edca872c50bce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Grabowski?= Date: Fri, 3 Feb 2023 14:15:32 +0100 Subject: [PATCH] removed css hover and focus from inline calendar icon --- .../public/scss/_date-time-picker.scss | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/bundle/Resources/public/scss/_date-time-picker.scss b/src/bundle/Resources/public/scss/_date-time-picker.scss index 29c947a621..507baf2f8b 100644 --- a/src/bundle/Resources/public/scss/_date-time-picker.scss +++ b/src/bundle/Resources/public/scss/_date-time-picker.scss @@ -37,5 +37,23 @@ margin-bottom: calculateRem(4px); } } + + .ibexa-input-text-wrapper__action-btn--calendar { + &:hover { + .ibexa-icon { + fill: $ibexa-color-dark; + } + } + + &:focus { + color: transparent; + border-color: transparent; + box-shadow: none; + + .ibexa-icon { + fill: $ibexa-color-dark; + } + } + } } }