From 14fd6891e07ce8658d6ea69a5c080445a35786fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8C=E8=B4=A7=E7=88=B1=E5=90=83=E7=99=BD=E8=90=9D?= =?UTF-8?q?=E5=8D=9C?= Date: Wed, 12 Apr 2023 09:59:31 +0800 Subject: [PATCH] fix: Edge useless icon (#41759) --- components/input/style/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/input/style/index.ts b/components/input/style/index.ts index a36605b3835f..4569aff4f094 100644 --- a/components/input/style/index.ts +++ b/components/input/style/index.ts @@ -610,6 +610,10 @@ const genAffixStyle: GenerateStyle = (token: InputToken) => { borderRadius: 0, outline: 'none', + '&::-ms-reveal': { + display: 'none', + }, + '&:focus': { boxShadow: 'none !important', },