Merge branch 'master' into master

This commit is contained in:
Kognise 2021-08-11 13:16:03 -04:00 committed by GitHub
commit 65312829b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 32 additions and 8 deletions

View file

@ -1,6 +1,7 @@
button,
select,
input[type='submit'],
input[type='reset'],
input[type='button'],
input[type='checkbox'],
input[type='range'],
@ -8,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,
@ -96,6 +102,7 @@ select[multiple] {
button,
input[type='submit'],
input[type='reset'],
input[type='button'] {
padding-right: 30px;
padding-left: 30px;
@ -103,6 +110,7 @@ input[type='button'] {
button:hover,
input[type='submit']:hover,
input[type='reset']:hover,
input[type='button']:hover {
background: var(--button-hover);
}
@ -117,6 +125,7 @@ textarea:focus {
input[type='checkbox']:active,
input[type='radio']:active,
input[type='submit']:active,
input[type='reset']:active,
input[type='button']:active,
input[type='range']:active,
button:active {