Created
October 5, 2020 05:53
-
-
Save Manyaka/b652968cd16393982d23afa5be2a98cf to your computer and use it in GitHub Desktop.
Убирает стиль автозаполнения
This file contains 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
input:-webkit-autofill, | |
input:-webkit-autofill:hover, | |
input:-webkit-autofill:focus, | |
input:-webkit-autofill:active { | |
-webkit-transition: 'color 9999s ease-out, background-color 9999s ease-out'; | |
-webkit-transition-delay: 9999s; | |
} | |
input::-webkit-outer-spin-button, | |
input::-webkit-inner-spin-button { | |
-webkit-appearance: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment