How to change color of Bootstrap disabled button?

后端 未结 3 906
予麋鹿
予麋鹿 2021-02-12 20:18

I am using a bootstrap button on a page of my website and I want to change the color of a disabled button. A button that is \"grayed out\" and you cannot click. Is there a way I

3条回答
  •  后悔当初
    2021-02-12 20:44

    I had to do this because I was disabling the button in javascript.

     var button = document.querySelector("#button");
                button.disabled = 'disabled';
                button.setAttribute("style", "background-color: #799b48");
    

提交回复
热议问题