1
0
mirror of https://github.com/jdan/98.css.git synced 2026-05-05 06:01:22 +09:00

Merge branch 'master' into touch-this

This commit is contained in:
Mu-An Chiou
2020-04-24 09:53:43 -04:00
12 changed files with 1320 additions and 1160 deletions

View File

@@ -144,6 +144,10 @@ button:focus {
outline-offset: -4px;
}
button::-moz-focus-inner {
border: 0;
}
:disabled,
:disabled + label {
color: var(--button-shadow);
@@ -260,6 +264,7 @@ input[type="checkbox"] {
-webkit-appearance: none;
-moz-appearance: none;
margin: 0;
background: 0; /* necessary for hiding default disabled-state styling on iOS */
border: none;
}
@@ -348,6 +353,8 @@ input[type="checkbox"][disabled]:checked + label::after {
}
input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
padding: 3px 4px;
@@ -362,11 +369,15 @@ textarea {
}
input[type="text"],
input[type="password"],
input[type="email"],
select {
height: 21px;
}
input[type="text"] {
input[type="text"],
input[type="password"],
input[type="email"] {
/* For some reason descenders are getting cut off without this */
line-height: 2;
}
@@ -385,6 +396,8 @@ select {
select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
outline: none;
}