Updated to the latest 4.0 beta version I noticed that Buttons when in a disabled state the cursor not-allowed no longer shows up. This causes confusion for users on disabled buttons.
<button type="button" class="btn btn-secondary" style="border: none;" data-toggle="modal" data-target="#editPropertyModal"
[disabled]="!isEditMode">View Secret Word</button>
Any ideas?
Thanks
ps: For now I am using below in my css for a quick fix if anyone else also need it.
button:disabled {
cursor: not-allowed;
}
It was intended. #22403
Closed thanks to @max41479 馃憤
yes
Most helpful comment
ps: For now I am using below in my css for a quick fix if anyone else also need it.