Change Bootstrap input focus blue glow

后端 未结 19 2162
抹茶落季
抹茶落季 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:25

    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;
    }
    

提交回复
热议问题