Password Icon To be hidden

0
I am getting this password icon in the field even though I am making the Field as Show as Password to “YES”. I am facing this issue only in Microsoft Edge only and not in Chrome. I dont want to show this eye icon rightside. Can anyone help me in this. Thanks in Advance.  
asked
1 answers
0

It’s not a Mendix thing, but the almighty internet suggests adding a little CSS rule in your theme. I haven’t tried this myself, as I’m not using Edge on principle. Also this probably won’t disable the keyboard shortcut (ALT+F8).

::-ms-reveal {
    display: none;
}

https://stackoverflow.com/questions/61449079/how-to-hide-the-eye-from-a-password-input-in-ms-edge-and-ie

https://docs.microsoft.com/en-us/microsoft-edge/web-platform/password-reveal

 

answered