Remove Ion-input autofill background color

when i select from saved data (email, password, …) i get the ion-select value style like displayed in the image below

how can i remove background autofill color?

1 Like

for anyone who faces this. add this in css section


input:-webkit-autofill,

input:-webkit-autofill:hover,

input:-webkit-autofill:focus

input:-webkit-autofill,

textarea:-webkit-autofill,

textarea:-webkit-autofill:hover

textarea:-webkit-autofill:focus,

select:-webkit-autofill,

select:-webkit-autofill:hover,

select:-webkit-autofill:focus {

  border:none !important;

  -webkit-text-fill-color: inherit !important;

  /* -webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset; */

  transition: background-color 5000s ease-in-out 0s;

}