Created
February 7, 2014 17:10
-
-
Save JamoCA/8867186 to your computer and use it in GitHub Desktop.
CSS to suppress LastPass INPUT styling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// I like LastPass, but the input field styling on repetitive admin forms is distracting and unnecessary. | |
// This resets the background image, padding and hides the inset LastPass button. (No visible button, but still clickable.) | |
// <input type="password" name="Password" class="noLastPassStyle"> | |
input.noLastPassStyle { | |
background-image:none !important; | |
background-attachment:none !important; | |
padding-right:0 !important; | |
border:1px solid #ABADB3 !important; | |
} |
I think LastPass also changes the input element's border style.
data-lpignore="true"
Just tested data-lpignore="true"
and data-lpignore='true'
and lp ignored the ignore, remaining displayed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also, to suppress poorly positioned lastpass icons in print css, then use this: