wsuwebteam/web-design-system

An `<input>` without a `type` attribute is not styled

Opened this issue · 0 comments

If an <input> doesn't have a type attribute, then the WDS input styling is not applied. However, this input is treated by the browser as the same a type="text", so the same styles should be applied.

Adding the selector input:not([type]) everywhere that input[type=text] is used should fix this.