Forked from xto3na/Ie и Edge убрать значки крестика и глаза с полей ввода
Created
February 10, 2021 11:29
-
-
Save sega21rus7/5b944c35f51d6a0640d78b0e940793a8 to your computer and use it in GitHub Desktop.
Ie и Edge убрать значки крестика и глаза с полей ввода
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
/* don't show the x for text inputs */ | |
::-ms-clear { | |
width : 0; | |
height: 0; | |
} | |
/* don't show the eye for password inputs */ | |
::-ms-reveal { | |
width : 0; | |
height: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment