Waylon194
Waylon194

Reputation: 43

How to change/remove the disabled icon in bootstrap 3

I was wondering how I can remove the bootstrap 3 disabled icon.

Thanks in advance.

Upvotes: 2

Views: 928

Answers (1)

mrapi
mrapi

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

Related Questions