I've encountered an issue on my iOS device. When I open the menu with a popup, there is a blue border around the text element, even though it's not a hyperlink underline.
https://i.sstatic.net/WA3rz.jpg
I attempted to resolve this using the following CSS code:
select:focus,
textarea:focus,
button:focus {
outline: none;
}
However, this did not work, so I then tried disabling the input outline for all elements:
input {
outline:none;
}
Unfortunately, this also did not yield any results. Can anyone provide advice on how to fix this issue?