On input focus I want to change the color of the label element. How can I achieve this in less?
focus
.control-label{ color: @gray-light; } .co
The easy way is to use :focus-within check developer mozilla
.control-group:focus-within .control-label { color: red; }
Or
.control-group:focus-within label { color: red; }