From a6d95fe11b722dec21ef33585b5144f67c0bd85c Mon Sep 17 00:00:00 2001 From: Joshua Criss Date: Fri, 3 Apr 2026 10:13:09 +1100 Subject: [PATCH] luci-theme-openwrt-2020: ifacebox in overview Set text to var(--secondary-bright-color) when using var(--main-bright-color) for background to match same behaviour as the header of the page, e.g. IPv4 Upstream and IPv6 Upstream boxes. Signed-off-by: Joshua Criss --- .../htdocs/luci-static/openwrt2020/cascade.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css b/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css index 0be8a58af0..17bab59cf0 100644 --- a/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css +++ b/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css @@ -2052,3 +2052,12 @@ body[data-page='admin-status-overview'] .cbi-title .label.notice:hover { } /* === END STATUS OVERVIEW: HIDE/SHOW BUTTONS === */ + +/* === STATUS OVERVIEW: MATCH IFACEBOX COLOUR WITH HEADER === */ + +/* Set text to var(--secondary-bright-color) when using var(--main-bright-color) for background to match same behaviour as the header of the page, e.g. IPv4 Upstream and IPv6 Upstream boxes */ +body[data-page='admin-status-overview'] .ifacebox-head { + color: var(--secondary-bright-color); +} + +/* === END STATUS OVERVIEW: MATCH IFACEBOX COLOUR WITH HEADER === */