Reduce input selector specificity for display property to prevent overriding user's css. Fixes #78 and #82

This commit is contained in:
Eyal Azulay 2021-06-14 12:11:53 +01:00
parent 129e255eb4
commit 42cc5ba32d

View file

@ -9,11 +9,16 @@ input[type='radio'] {
cursor: pointer; cursor: pointer;
} }
input:not([type='checkbox']):not([type='radio']), input,
select { select {
display: block; display: block;
} }
[type='checkbox'],
[type='radio'] {
display: initial;
}
input, input,
button, button,
textarea, textarea,