Merged in fix/LOY-171-password-reveal-icon-edge (pull request #1476)

fix(LOY-171): Hide password reveal icons in Microsoft Edge

* fix(LOY-171): Hide password reveal icons in Microsoft Edge


Approved-by: Christian Andolf
This commit is contained in:
Chuma Mcphoy (We Ahead)
2025-03-05 12:57:41 +00:00
parent 4ab586660a
commit bba76e7707

View File

@@ -86,3 +86,13 @@
.inputWrapper {
position: relative;
}
/* Hide the built-in password reveal icon in Microsoft Edge.
* See: https://learn.microsoft.com/en-us/microsoft-edge/web-platform/password-reveal
*/
.inputWrapper input::-ms-reveal {
display: none;
}
.inputWrapper input::-ms-clear {
display: none;
}