I have a card in which I have a checkbox.
When it is checked, I want to disable the operation of the entire card except this checkbox item
The checkbox must be running to be able to restore operation
I try so but it doesn't work. Can it be done?
CSS is supposed to work on everything except the input type checkbox
.cardWrapper.done:not(input[type='checkbox']) {
pointer-events: none;
color: #AAA !important;
background: #F5F5F5 !important;
}