I am trying to change the color of the outline when an element is active on Safari.
I need to keep all the styling of the default Safari outline, and just change the outline color.
I have tried:
a {
&:focus {
outline: auto red;
}
}
also
a {
&:focus {
outline-color: red;
}
}
when I do this
a {
&:focus {
outline: red solid 2px;
}
}
the color of the outline will change but I loose all the other styling (rounded corners and the fade), I have tried different options with outline, outline-color, outline-style. Nothing seem to work.
Am I missing some basic behavior of Safari?
Thank you!