From 2b010f97e57a1130f9a865e852cd52b0a061dfae Mon Sep 17 00:00:00 2001 From: Joshua Criss Date: Thu, 2 Apr 2026 14:59:58 +1100 Subject: [PATCH] luci-theme-openwrt: 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 --- .../htdocs/luci-static/openwrt.org/cascade.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/themes/luci-theme-openwrt/htdocs/luci-static/openwrt.org/cascade.css b/themes/luci-theme-openwrt/htdocs/luci-static/openwrt.org/cascade.css index 88697ca534..ce8ab58a3a 100644 --- a/themes/luci-theme-openwrt/htdocs/luci-static/openwrt.org/cascade.css +++ b/themes/luci-theme-openwrt/htdocs/luci-static/openwrt.org/cascade.css @@ -663,7 +663,8 @@ img.cbi-image-button { color: #000; display: inline-block; font-size: inherit; - -webkit-appearance: none; + -webkit-appearance: none; /* nonstandard, should remove in future */ + appearance: none; background: #fff; text-align: center; font-weight: bold;