Forked from davekuhar/Override light grey placeholder text in forms.css
Created
April 16, 2018 09:49
-
-
Save gbissland/44d7ebfb4ca9ddaebf9bff55e36f4e5b to your computer and use it in GitHub Desktop.
Placeholder text is too damn light!
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
/* form placeholder overrides - have to use !important or this doesn't work | |
--------------------------------------------- */ | |
::-webkit-input-placeholder { /* Chrome */ | |
color: #1E1F22 !important; | |
} | |
:-ms-input-placeholder { /* IE 10+ */ | |
color: #1E1F22 !important; | |
} | |
::-moz-placeholder { /* Firefox 19+ */ | |
color: #1E1F22 !important; | |
opacity: 1 !important; | |
} | |
:-moz-placeholder { /* Firefox 4 - 18 */ | |
color: #1E1F22 !important; | |
opacity: 1 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment