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
TextField Validation State Icon not showing properly due to CSS 'box-sizing'. It's exactly the same problem happened to TreeView(fixed by #487) where Validation Icon is not showing properly due to CSS box-sizing: border-box where should be "content-box".
Description
TextField Validation State Icon not showing properly due to CSS 'box-sizing'. It's exactly the same problem happened to TreeView(fixed by #487) where Validation Icon is not showing properly due to CSS
box-sizing: border-box
where should be "content-box".When you add following CSS problem is solved:
.spectrum-Textfield-validationIcon { box-sizing: content-box; }
Steps to reproduce
Screenshots
Environment
Additional context
The text was updated successfully, but these errors were encountered: