xxxxxxxxxx
1
<!-- Material input -->
2
<div class="md-form">
3
<input type="number" id="numberExample" class="form-control">
4
<label for="numberExample">Enabled Material Input</label>
5
</div>
6
<div class="md-form">
7
<input type="number" id="numberExample" class="form-control" disabled>
8
<label class="disabled" for="numberExample">Disabled Material Input</label>
9
</div>
10
<div>
11
<p>
12
Cannot change cursor through MD Boostrap class 'disabled' on the label. Also can't
13
change it if I explicitly set the cursor in a class.
14
</p>
15
<p>
16
Cursor also doesn't change in the example shown to change it:
17
<a href="https://mdbootstrap.com/docs/jquery/forms/inputs/#disabled">MDBootstrap Disabled Input</a>
18
</p>
19
</div>
xxxxxxxxxx
1
// Tried to explicitly set it
2
.disabled {
3
cursor: not-allowed !important;
4
}
1
1
Console errors: 0