From a36305307d6fec7b23de89eb93af674ef9c05a38 Mon Sep 17 00:00:00 2001 From: Haixing <65376724+HaixingOoO@users.noreply.github.com> Date: Wed, 13 Dec 2023 18:28:13 +0800 Subject: [PATCH] fix(DatePicker): fix date-picker disabled icon hover color (#1675) Co-authored-by: Heising --- style/web/components/input/_mixin.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style/web/components/input/_mixin.less b/style/web/components/input/_mixin.less index b4454e2565..69abf5eeb6 100644 --- a/style/web/components/input/_mixin.less +++ b/style/web/components/input/_mixin.less @@ -59,6 +59,10 @@ & > .@{prefix}-input__suffix { .t-icon { color: @input-text-color-disabled; + + &:hover { + color: @input-text-color-disabled; + } } } }