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

Add input[type="tel"] to format phone inputs

This commit is contained in:
dsgibbons
2023-02-24 07:19:18 +10:30
committed by GitHub
parent d39788c788
commit 25242d73d5

View File

@@ -439,6 +439,7 @@ input[type="checkbox"][disabled]:checked + label::after {
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
@@ -456,6 +457,7 @@ textarea {
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select {
height: 21px;
}
@@ -467,16 +469,19 @@ input[type="number"] {
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"] {
/* For some reason descenders are getting cut off without this */
line-height: 2;
}
input[type="email"]:disabled,
input[type="tel"]:disabled,
input[type="password"]:disabled,
input[type="text"]:disabled,
input[type="number"]:disabled,
input[type="email"]:read-only,
input[type="tel"]:read-only,
input[type="password"]:read-only,
input[type="text"]:read-only,
input[type="number"]:read-only,
@@ -500,6 +505,7 @@ select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
outline: none;
@@ -831,4 +837,4 @@ table > tbody > tr.highlighted {
table > tbody > tr > * {
padding: 0 var(--grouped-element-spacing);
height: 14px;
}
}