-
-
Save chriswitko/b3eab983cad54a7230c2a5a017cff482 to your computer and use it in GitHub Desktop.
CSS hack to hide Chrome default date picker styles
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
// @see http://stackoverflow.com/questions/11320615/disable-browser-native-datepicker | |
input::-webkit-calendar-picker-indicator{ | |
display: none; | |
} | |
input[type="date"]::-webkit-input-placeholder{ | |
visibility: hidden !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment