diff options
author | bptato <nincsnevem662@gmail.com> | 2023-09-22 12:44:53 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-09-22 12:53:03 +0200 |
commit | 1ef033b1025f818a8b5875a51cf019e41f11f767 (patch) | |
tree | df3f54c50fad76dbd21d5c890f6144101f36f135 /res | |
parent | 7c8cc5c20cb69f77204d6b19beed501c005bd3be (diff) | |
download | chawan-1ef033b1025f818a8b5875a51cf019e41f11f767.tar.gz |
fix size for some input types
padToWidth should be called for all input types in InputWithSize. Also, they should be underlined by ua.css.
Diffstat (limited to 'res')
-rw-r--r-- | res/ua.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/res/ua.css b/res/ua.css index 8404c8b6..8039af96 100644 --- a/res/ua.css +++ b/res/ua.css @@ -141,7 +141,8 @@ input[type="radio"]::after { color: initial; } -input:is([type="text"], [type="password"], [type="search"], [type="file"]) { +input:is([type="text"], [type="password"], [type="search"], [type="file"], + [type="url"], [type="email"], [type="tel"]) { text-decoration: underline; } |