diff --git a/components/input/style/index.less b/components/input/style/index.less index 390a7e39fa..faca6124e1 100644 --- a/components/input/style/index.less +++ b/components/input/style/index.less @@ -32,11 +32,33 @@ } .@{ant-prefix}-input-password-icon { + color: @text-color-secondary; cursor: pointer; transition: all 0.3s; + &:hover { color: #333; } } +.@{ant-prefix}-input-clear-icon { + color: @disabled-color; + font-size: @font-size-sm; + vertical-align: top; + cursor: pointer; + transition: color 0.3s; + + &:hover { + color: @text-color-secondary; + } + + &:active { + color: @text-color; + } + + + i { + margin-left: 6px; + } +} + @import './search-input';