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
Is your feature request related to a problem? Please describe.
To ensure ZERO overlap between element selectors, we dont want to use for example <input> tags, but rather ` and so on. This will minimize unintended collisions of styles and unintentional element styling. Input tags are just an example. We will have to check all of our element styling to ensure this change is complete.
This will also solve the problem of many currently unsupported elements, like color input, to be "usable" (not horribly misstyled) even without support.
Describe the solution you'd like
To solve the issue of without declared types having no style, we can use input:not([type]) selector instead.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
To ensure ZERO overlap between element selectors, we dont want to use for example
<input>
tags, but rather ` and so on. This will minimize unintended collisions of styles and unintentional element styling. Input tags are just an example. We will have to check all of our element styling to ensure this change is complete.This will also solve the problem of many currently unsupported elements, like color input, to be "usable" (not horribly misstyled) even without support.
Describe the solution you'd like
To solve the issue of without declared types having no style, we can use
input:not([type])
selector instead.The text was updated successfully, but these errors were encountered: