Created
June 7, 2024 17:30
-
-
Save geekelo/b7c63af675c2f78e66f75b988308cba7 to your computer and use it in GitHub Desktop.
Style input autofill
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
input[type="search"]:-webkit-autofill, | |
input:-webkit-autofill:hover, | |
input:-webkit-autofill:focus, | |
textarea:-webkit-autofill, | |
textarea:-webkit-autofill:hover, | |
textarea:-webkit-autofill:focus, | |
select:-webkit-autofill, | |
select:-webkit-autofill:hover, | |
select:-webkit-autofill:focus { | |
background-color: rgb(13, 12, 0) !important; | |
border: 1px solid rgb(46, 42, 3) !important; | |
-webkit-box-shadow: 0 0 0px 1000px rgb(46, 42, 3) inset !important; | |
box-shadow: 0 0 0px 1000px rgb(46, 42, 3) inset !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment