I'm sure you've all seen by now, Chrome's latest update includes a very thick outline on all input tags. It's terribly unattractive on my site, so I'm working to disable it.
The best idea I've found is in CSS:
*, input, select, textarea, option, button {
outline: none!important;
}
That works, but isn't the use of * as a selector suuuuper slow?
And if I'm selecting everything, wouldn't that make
input...button irrelevant? But on the flip side, is there any real reason to use the wildcard instead of specifically saying
input... button?