You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One thing I noticed with form controls & labels is that the labels for controls which are disabled don't look disabled. In the case of radio buttons & checkboxes in particular, this isn't very clear to the end user, the control still looks enabled.
What does everyone think of adding supposed for the disabled class on labels? The text would change to a disabled appearance?
Given how folks implement forms so uniquely across projects, we'll pass on this for now. Plus we have larger changes afoot in 3.0 to change how forms work.
One thing I noticed with form controls & labels is that the labels for controls which are disabled don't look disabled. In the case of radio buttons & checkboxes in particular, this isn't very clear to the end user, the control still looks enabled.
What does everyone think of adding supposed for the disabled class on labels? The text would change to a disabled appearance?
label.disabled {
color: @GrayLight;
cursor: not-allowed;
}
The text was updated successfully, but these errors were encountered: