I would like to change the css of all labels for all inputs that are disabled. I currently use this in a global scss style sheet:
::ng-deep input:disabled+label {
color: rgb(223, 107, 107) !important;
}
<label for="someLabel">someLabel</label>
<input id="someLabel" disabled>
But the css is not applied to the label.