Change Bootstrap input focus blue glow

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

    Building up on @wasinger's reply above, in Bootstrap 4.5 I had to override not only the color variables but also the box-shadow itself.

    $input-focus-width: .2rem !default;
    $input-focus-color: rgba($YOUR_COLOR, .25) !default;
    $input-focus-border-color: rgba($YOUR_COLOR, .5) !default;
    $input-focus-box-shadow: 0 0 0 $input-focus-width $input-focus-color !default;
    

提交回复
热议问题