1
0
mirror of https://github.com/jdan/98.css.git synced 2025-09-02 02:12:44 +02:00

Add support for input type url

This commit is contained in:
ᡥᠠᡳᡤᡳᠶᠠ ᡥᠠᠯᠠ·ᠨᡝᡴᠣ 猫
2024-09-13 12:21:57 +08:00
committed by GitHub
parent ffa29f4cd9
commit c28706f265

View File

@@ -474,6 +474,7 @@ input[type="checkbox"][disabled]:checked + label::after {
input[type="text"], input[type="text"],
input[type="password"], input[type="password"],
input[type="email"], input[type="email"],
input[type="url"],
input[type="tel"], input[type="tel"],
input[type="number"], input[type="number"],
input[type="search"], input[type="search"],
@@ -493,6 +494,7 @@ textarea {
input[type="text"], input[type="text"],
input[type="password"], input[type="password"],
input[type="email"], input[type="email"],
input[type="url"],
input[type="tel"], input[type="tel"],
input[type="search"], input[type="search"],
select { select {
@@ -514,6 +516,7 @@ input[type="search"]::-webkit-search-results-decoration { display: none; }
input[type="text"], input[type="text"],
input[type="password"], input[type="password"],
input[type="email"], input[type="email"],
input[type="url"],
input[type="tel"], input[type="tel"],
input[type="number"], input[type="number"],
input[type="search"] { input[type="search"] {
@@ -522,12 +525,14 @@ input[type="search"] {
} }
input[type="email"]:disabled, input[type="email"]:disabled,
input[type="url"]:disabled,
input[type="tel"]:disabled, input[type="tel"]:disabled,
input[type="password"]:disabled, input[type="password"]:disabled,
input[type="text"]:disabled, input[type="text"]:disabled,
input[type="number"]:disabled, input[type="number"]:disabled,
input[type="search"]:disabled, input[type="search"]:disabled,
input[type="email"]:read-only, input[type="email"]:read-only,
input[type="url"]:read-only,
input[type="tel"]:read-only, input[type="tel"]:read-only,
input[type="password"]:read-only, input[type="password"]:read-only,
input[type="text"]:read-only, input[type="text"]:read-only,
@@ -553,6 +558,7 @@ select:focus,
input[type="text"]:focus, input[type="text"]:focus,
input[type="password"]:focus, input[type="password"]:focus,
input[type="email"]:focus, input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus, input[type="tel"]:focus,
input[type="number"]:focus, input[type="number"]:focus,
input[type="search"]:focus, input[type="search"]:focus,