Skip to content

Instantly share code, notes, and snippets.

@jesusalber1
Created December 26, 2015 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesusalber1/01f80de82f2b12aceeb8 to your computer and use it in GitHub Desktop.
Save jesusalber1/01f80de82f2b12aceeb8 to your computer and use it in GitHub Desktop.
Prevent yellow auto-complete background in Chrome
/* Idea from http://stackoverflow.com/a/14205994/4296439 */
$input-background-color: white;
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px $input-background-color inset;
box-shadow: 0 0 0 1000px $input-background-color inset;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment