After spending countless hours attempting to change the focus outline color of the custom bootstrap controls, I have hit a roadblock.
Changing the background is a breeze with:
.custom-control-input:checked~.custom-control-indicator {
background-color: red;
}
However, targeting the outline color seems to be an insurmountable task. I've experimented with:
input.custom-control-input:focus {
outline: none !important;
outline-color: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
background-color: transparent !important;
}
Has anyone encountered this issue as well?
Check out my fiddle here: https://jsfiddle.net/robsilva/ht1cjLrb/1/
Your help is greatly appreciated!