In Chrome, there is a blue border around the textarea.
How come I can\'t remove it?
textarea:hover, input:hover, textarea:active, input:active, texta
If you just want to change the color, change the variable (recommended):
@input-border-focus: red;
variables.less
$input-border-focus: red;
variables.sass
If you wan't to remove it completely, you'll have to overwrite the Mixin that sets the outline.
.form-control-focus(@color: @input-border-focus) {}
If you are using css overwrite it via:
.form-control:focus{
border-color: #cccccc;
-webkit-box-shadow: none;
box-shadow: none;
}
Link to implementation