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
I noticed that there are new validation styles for outlined text field introduced in 2.7.0 (PR #702). These styles were probably working in previous versions but are broken in 2.7.0 (probably due to mdc components upgrade). Current selectors are like this: .invalid + .mdc-notched-outline, but should be .invalid .mdc-notched-outline (without +), because .mdc-notched-outline is now a child of .invalid (used to be on the same level before).
The text was updated successfully, but these errors were encountered:
I noticed that there are new validation styles for outlined text field introduced in 2.7.0 (PR #702). These styles were probably working in previous versions but are broken in 2.7.0 (probably due to mdc components upgrade). Current selectors are like this:
.invalid + .mdc-notched-outline
, but should be.invalid .mdc-notched-outline
(without +), because.mdc-notched-outline
is now a child of.invalid
(used to be on the same level before).The text was updated successfully, but these errors were encountered: