mirror of
https://github.com/zhigang1992/react.git
synced 2026-03-26 22:42:51 +08:00
fix: remove ms-reveal for input (#553)
* fix: remove ms-reveal for input * fix(lint): no-unused-vars for next line
This commit is contained in:
@@ -97,6 +97,10 @@ exports[`Input should be work with icon 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
@@ -200,6 +204,10 @@ exports[`Input should be work with icon 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
@@ -320,6 +328,10 @@ exports[`Input should be work with label 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
@@ -436,6 +448,10 @@ exports[`Input should be work with label 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
@@ -542,6 +558,10 @@ exports[`Input should be work with label 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
@@ -634,6 +654,10 @@ exports[`Input should work with different sizes 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
@@ -722,6 +746,10 @@ exports[`Input should work with different sizes 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
@@ -810,6 +838,10 @@ exports[`Input should work with different sizes 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
@@ -898,6 +930,10 @@ exports[`Input should work with different sizes 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
@@ -990,6 +1026,10 @@ exports[`Input should work with different status 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
@@ -1078,6 +1118,10 @@ exports[`Input should work with different status 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
@@ -1166,6 +1210,10 @@ exports[`Input should work with different status 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
|
||||
@@ -97,6 +97,10 @@ exports[`InputPassword should render correctly 1`] = `
|
||||
color: #999;
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
|
||||
@@ -254,6 +254,10 @@ const Input = React.forwardRef<HTMLInputElement, React.PropsWithChildren<InputPr
|
||||
color: ${theme.palette.accents_3};
|
||||
}
|
||||
|
||||
::-ms-reveal {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:active,
|
||||
|
||||
Reference in New Issue
Block a user