If you have the Last Pass extension installed in chrome it displays a ...
on the right side of certain input fields.
I was wondering: Is there a way to hide this with css?
Hi! If you do not want the gray in-field autofill LastPass icon to appear in your login fields, you can disable it within your LastPass browser extension Preferences to remove it for all sites, or add a site as a Never URL so that the icon does not appear for specific sites.
To sum up, there are two main reasons why LastPass fails to autofill your login information: either the feature is disabled, or something's blocking it. To troubleshoot the problem, check your account settings. You can also update the app, and disable your extensions.
Right-click on the active LastPass icon in your Chrome toolbar. Click Remove from Chrome. Click Remove to confirm.
You can also hide the icon by adding this attribute to the input element:
data-lpignore="true"
To suppress the icon for an input field like below:
<input type="tel" id="cc-number" autocomplete="off">
I used below css:
img[id^='__lpform_cc-number_icon'] {
display: none !important;
}
input {
background-image: none !important;
}
data-lpignore="true"
^^ no longer works I guess. I am not sure, as it didn't work in my case.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With