Change hover color on a button with Bootstrap customization

前端 未结 4 1689
独厮守ぢ
独厮守ぢ 2020-12-24 01:30

I am trying to style my buttons in a way that the hover makes the button a lighter shade instead of a darker shade. I tried bootstrap customization page(http://getbootstrap.

4条回答
  •  伪装坚强ぢ
    2020-12-24 02:08

    This is the correct way to change btn color.

     .btn-primary:not(:disabled):not(.disabled).active, 
        .btn-primary:not(:disabled):not(.disabled):active, 
        .show>.btn-primary.dropdown-toggle{
            color: #fff;
            background-color: #F7B432;
            border-color: #F7B432;
        }
    

提交回复
热议问题