What is the method used by Bootstrap to disable the HTML outline property? After adding the form control class to my input, I noticed that "outline: none;" no longer has an effect.
<input class="form-control" style="outline:none;">
Check out the codepen demonstration here: https://codepen.io/Eli92/pen/WXXbRa
Although I could create my own CSS class for this input, I am curious about what is going on here. However, as a beginner, I feel unsure about submitting a bug report.
The reason behind removing the outline is to replace it with my own custom design on an outer element, similar to what websites like Youtube and other popular sites do with their search bars.