mirror of
https://github.com/kognise/water.css.git
synced 2025-12-05 22:34:57 +01:00
Reduce input selector specificity for display property to prevent overriding user's css. Fixes #78 and #82
This commit is contained in:
parent
129e255eb4
commit
42cc5ba32d
1 changed files with 6 additions and 1 deletions
|
|
@ -9,11 +9,16 @@ input[type='radio'] {
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
input:not([type='checkbox']):not([type='radio']),
|
||||
input,
|
||||
select {
|
||||
display: block;
|
||||
}
|
||||
|
||||
[type='checkbox'],
|
||||
[type='radio'] {
|
||||
display: initial;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
textarea,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue