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
{{ message }}
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
Right now in firefox if your input has requiredminmax etc set, and it isn't valid you end up with a big red box around it. We should replace this box with the correct material styles for errors which can be found here.
What you see now
To remove the red border you need to add the following(we may want to only apply this to inputs with md-input-container but probably not).
input:invalid {
box-shadow: none;
}
The text was updated successfully, but these errors were encountered:
Right now in firefox if your input has
required
min
max
etc set, and it isn't valid you end up with a big red box around it. We should replace this box with the correct material styles for errors which can be found here.What you see now
To remove the red border you need to add the following(we may want to only apply this to inputs with
md-input-container
but probably not).The text was updated successfully, but these errors were encountered: