Below is an example of my CSS code snippet.
.step-radio-button:not(:disabled):not(:checked):hover + label {
background: yellow;
}
I have attempted to replace :disabled with [DISABLED] or :enabled, but unfortunately, it did not resolve the issue.
.step-radio-button:not([DISABLED]):not(:checked):hover + label {
background: yellow;
}
Alternatively,
.step-radio-button:enabled:not(:checked):hover + label {
background: yellow;
}