Reputation: 43
I was wondering how I can remove the bootstrap 3 disabled icon.
Thanks in advance.
Upvotes: 2
Views: 928
Reputation: 6025
for buttons,try this:
.btn[disabled] {
cursor: default !important;
}
for other elements,use inspect element and check active class for cursor: not-allowed;
and replace it as code above
Upvotes: 3