I need to have two labels for one input field with different styles.
For some reason this code doesn't work. It does work perfectly for first label, and only partially for second label.
this code works
input.switcher[type=checkbox] + label + label
but this doesn't (second label doesn't change color by checking on and off)
input.switcher[type=checkbox]:checked + label + label
any advice how to solve this issue is appreciated!