I'm working with a WordPress theme that has applied outline:none;
to several elements for their :focus
state. I need to negate this without modifying the parent-theme files, but nothing seems to be working.
Here's what I've tried:
*:focus { outline: inherit !important; }
*:focus { outline: initial !important; }
a, a:focus { outline: inherit !important; }
a, a:focus { outline: initial !important; }
I really want to just reset it to defaults, but the only thing that's had any result so far is:
*:focus { border: 3px solid red !important; }
But I really don't want to manually set the styles, just let the browsers do their thing.