Prevent pointer cursor when element is disabled

This commit is contained in:
Oliver-Akins 2023-12-30 22:14:14 -07:00
parent b50cfc9dc7
commit d4531f089a
3 changed files with 22 additions and 2 deletions

View file

@ -28,6 +28,10 @@
@include fvtt_reset;
font-family: inherit;
cursor: pointer;
&:disabled {
cursor: default;
}
}
input[type="text"],
@ -39,6 +43,10 @@
select, select:hover {
cursor: pointer;
:disabled {
cursor: default;
}
}
.debug-data {