luci-theme-material: update -webkit-appearance
authorJoshua Criss <redacted>
Thu, 2 Apr 2026 03:58:40 +0000 (14:58 +1100)
committerPaul Donald <redacted>
Sat, 4 Apr 2026 14:23:06 +0000 (16:23 +0200)
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 <redacted>
themes/luci-theme-material/htdocs/luci-static/material/cascade.css

index b3db43b53a8e6b77e23931e7ed76f2e18852fff9..e56e73b9263ff65ceb5aeb3c3ba8a32642bbeb7f 100644 (file)
@@ -966,7 +966,8 @@ td > table > tbody > tr > td,
        border-radius: .2rem;
        background-color: #f0f0f0;
        background-image: none;
-       -webkit-appearance: none;
+       -webkit-appearance: none;  /* nonstandard, should remove in future */
+       appearance: none;
        -ms-touch-action: manipulation;
        touch-action: manipulation;
 }
@@ -987,7 +988,8 @@ td > table > tbody > tr > td,
 }
 
 .cbi-button:not(select) {
-       -webkit-appearance: none !important;
+       -webkit-appearance: none !important;  /* nonstandard, should remove in future */
+       appearance: none !important;
 }
 
 .cbi-button + .cbi-button {
git clone https://git.99rst.org/PROJECT