I can make Firefox not display the ugly dotted focus outlines on links with this:
a:focus { outline: none
The below worked for me in case of LINKS, thought of sharing - in case someone is interested.
a, a:visited, a:focus, a:active, a:hover{ outline:0 none !important; }
Cheers!