登录记住密码浏览器默认样式修改

 

太难看了

 

// 登录页记住密码样式修改
.new-input {
  input:-webkit-autofill,
  textarea:-webkit-autofill,
  select:-webkit-autofill {
    // color: #fff !important;
    //
    // background-image: none;
    // // box-shadow: 0 0 0 1000px transparent inset !important;
    // transition: background-color 50000s ease-in-out 0s;
    // -webkit-text-fill-color: #fff !important;
  }

  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    color: #fff !important;
    background: none !important;
    box-shadow: none !important;
    transition: color 99999s ease-out, background-color 99999s ease-out;
    transition-delay: 99999s;
    -webkit-text-fill-color: #fff !important;
  }
}
posted @ 2025-04-27 10:15  abcByme  阅读(35)  评论(2)    收藏  举报