Is there a method to eliminate the show/hide icon in Safari that pops up when entering symbols into an input field with type "password"? I was able to achieve this in IE/Edge by incorporating the following CSS rule:
input[type=password]::-ms-reveal,
input[type=password]::-ms-clear
{
display: none;
}
However, I am uncertain how to accomplish the same task in Safari. No relevant information has been uncovered yet.