Does anyone know the how to change Bootstrap\'s input:focus? The blue glow that shows up when you click on an input field?
input:focus
input
Simple one
To remove it:
.form-control, .btn { box-shadow: none !important; outline: none !important; }
To change it
.form-control, .btn { box-shadow: new-value !important; outline: new-value !important; }