luci-theme-openwrt-2020: update -webkit-appearance

Compliment '-webkit-appearance'
with 'appearance', as it is
non-standard and has since
been succeeded by 'appearance',
accepted by all baseline browsers.

Future consideration to then
remove '-webkit-appearance'.

Signed-off-by: Joshua Criss <owlsy@outlook.com.au>
This commit is contained in:
Joshua Criss
2026-04-02 15:00:52 +11:00
committed by Paul Donald
parent 2b010f97e5
commit 63bb777eaf

View File

@@ -35,7 +35,8 @@
font-size: 100%; font-size: 100%;
background: none; background: none;
outline: none; outline: none;
-webkit-appearance: none; -webkit-appearance: none; /* nonstandard, should remove in future */
appearance: none;
} }
html { html {
@@ -981,9 +982,8 @@ input[type="checkbox"],
input[type="radio"] { input[type="radio"] {
--bd-color: var(--main-dark-color); --bd-color: var(--main-dark-color);
--fg-color: var(--main-dark-color); --fg-color: var(--main-dark-color);
-webkit-appearance: none; /* nonstandard, should remove in future */
appearance: none; appearance: none;
-webkit-appearance: none;
width: 1em; width: 1em;
height: 1em; height: 1em;
color: var(--fg-color); color: var(--fg-color);
@@ -1096,7 +1096,8 @@ input[type="password"] + .btn, input[type="password"] + button {
select { select {
padding: .1rem 0; padding: .1rem 0;
-webkit-appearance: menulist; -webkit-appearance: menulist; /* nonstandard, should remove in future */
appearance: menulist;
} }
textarea { textarea {