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
In case your button look like this:
Button
the next CSS code will change its color (when disabled only):
.btn.btn-primary[disabled] { background-color: #00ff00; }
or
.btn.btn-primary:disabled{ background-color: #00ff00; }