Created
March 12, 2017 17:26
-
-
Save armand1m/f162d9151b9264e1157fdef7e8e9e830 to your computer and use it in GitHub Desktop.
Removes webkit autofills horrible yellow color.
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
# Thanks to http://stackoverflow.com/questions/2781549/removing-input-background-colour-for-chrome-autocomplete | |
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { | |
box-shadow: 0 0 0px 1000px white inset; | |
-webkit-box-shadow: 0 0 0px 1000px white inset; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment