Any idea how i can hide this annoying input icon/button in Safari via CSS? I have no idea what the meaning of this new icon is because for me it has no functionality.
Thx a million, Thomas
Any idea how i can hide this annoying input icon/button in Safari via CSS? I have no idea what the meaning of this new icon is because for me it has no functionality.
Thx a million, Thomas
i resolved this problem this way
input:focus::-webkit-contacts-auto-fill-button{
opacity: 0;
}
I have notice that icon appears if none empty label before exist. Possible solution is to remove all text from label and put it as css property using "after", like that:
html
<label></label>
<input>
css
label:before {
content: 'some text for label';
}