diff options
author | bptato <nincsnevem662@gmail.com> | 2023-01-04 01:27:10 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-01-04 01:27:10 +0100 |
commit | 152f8908b0160379396c7fcda27cf9586374951a (patch) | |
tree | 5cd7d0fd7e6af58e8e99b017153cbd40fe82617f /res | |
parent | 181ea25b5626c697cc9b6bd3e42c85ea920be0f3 (diff) | |
download | chawan-152f8908b0160379396c7fcda27cf9586374951a.tar.gz |
ua.css: fix color, css/values: fix globals
Diffstat (limited to 'res')
-rw-r--r-- | res/ua.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/res/ua.css b/res/ua.css index a7456f81..6e424608 100644 --- a/res/ua.css +++ b/res/ua.css @@ -117,25 +117,25 @@ input[type="hidden"] { input::before { content: '['; text-decoration: none; - color: none; + color: initial; } input::after { content: ']'; text-decoration: none; - color: none; + color: initial; } input[type="radio"]::before { content: '('; text-decoration: none; - color: none; + color: initial; } input[type="radio"]::after { content: ')'; text-decoration: none; - color: none; + color: initial; } input:is([type="text"], [type="password"], [type="search"], [type="file"]) { @@ -252,13 +252,13 @@ select { select::before { content: '['; - color: none; + color: initial; display: inline-block; } select::after { content: ']'; - color: none; + color: initial; display: inline-block; } |