Merge branch 'master' into master

This commit is contained in:
Jordan Scales 2020-04-24 07:37:11 -04:00 committed by GitHub
commit ebe4feb105
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 30 additions and 3 deletions

18
.editorconfig Normal file
View file

@ -0,0 +1,18 @@
# https://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 80
trim_trailing_whitespace = true
[*.md]
max_line_length = 0
trim_trailing_whitespace = false
[COMMIT_EDITMSG]
max_line_length = 0

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -258,6 +258,7 @@ input[type="checkbox"] {
-webkit-appearance: none; -webkit-appearance: none;
-moz-appearance: none; -moz-appearance: none;
margin: 0; margin: 0;
background: 0; /* necessary for hiding default disabled-state styling on iOS */
border: none; border: none;
} }
@ -346,6 +347,8 @@ input[type="checkbox"][disabled]:checked + label::after {
} }
input[type="text"], input[type="text"],
input[type="password"],
input[type="email"],
select, select,
textarea { textarea {
padding: 3px 4px; padding: 3px 4px;
@ -360,11 +363,15 @@ textarea {
} }
input[type="text"], input[type="text"],
input[type="password"],
input[type="email"],
select { select {
height: 21px; height: 21px;
} }
input[type="text"] { input[type="text"],
input[type="password"],
input[type="email"] {
/* For some reason descenders are getting cut off without this */ /* For some reason descenders are getting cut off without this */
line-height: 2; line-height: 2;
} }
@ -383,6 +390,8 @@ select {
select:focus, select:focus,
input[type="text"]:focus, input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus { textarea:focus {
outline: none; outline: none;
} }