去除谷歌浏览器记住密码后input颜色改变问题
https://www.jianshu.com/p/9fdfb57b3b3f
我的
/*修改谷歌浏览器记住密码后改变input框颜色*/
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
-webkit-text-fill-color: #fff !important;
-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
background-color: transparent;
background-image: none;
transition: background-color 50000s ease-in-out 0s;
}
vue /deep/
vue - template -admin
移除这里
&:-webkit-autofill {
box-shadow: 0 0 0px 1000px $bg inset !important;
-webkit-text-fill-color: $cursor !important;
}
还没有评论,来说两句吧...