Change Bootstrap input focus blue glow

后端 未结 19 2193
抹茶落季
抹茶落季 2020-11-30 16:53

Does anyone know the how to change Bootstrap\'s input:focus? The blue glow that shows up when you click on an input field?

19条回答
  •  长情又很酷
    2020-11-30 17:31

    Actually, in Bootstrap 4.0.0-Beta (as of October 2017) the input element isn't referenced by input[type="text"], all Bootstrap 4 properties for the input element are actually form based.

    So it's using the .form-control:focus styles. The appropriate code for the "on focus" highlighting of an input element is the following:

    .form-control:focus {
      color: #495057;
      background-color: #fff;
      border-color: #80bdff;
      outline: none;
    }
    

    Pretty easy to implement, just change the border-color property.

提交回复
热议问题