.ivu-input {
-webkit-text-fill-color: white; //text-fill-color用来控制input自动填充的字体颜色
caret-color:white; //光标颜色
}
// autofill伪类来控制input自动填充的背景颜色--变透明
.ivu-input:-webkit-autofill {
transition: background-color 5000s ease-in-out 0s; //动画延迟
-webkit-box-shadow: 0 0 0 1000px transparent inset !important; //阴影覆盖
}
.ivu-input:focus {
outline:none;
border:none;
box-shadow: 0 0 0 2px transparent; //iview Input组件聚焦时会出现边框--去除边框
}
网友评论