Dotted lines for active

A question to the support team; how can I remove the dotted lines that you can see around the active items when I click?

Hi Pascall,
I recently need a fix for this too…
This CSS worked for me:

a, a:active, a:focus, 
button, button:focus, button:active, 
.btn, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn.active.focus {
    outline: none;
    outline: 0;
}

input::-moz-focus-inner {
    border: 0;
}
1 Like