From 65a461e8a0340a361545d3510918f34edb27920c Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 31 Mar 2020 17:03:56 +0200 Subject: [PATCH] luci-theme-openwrt-2020: fix trailing comma in CSS Since the trailing comma rule is combined with other selectors by CSSmin, the resulting minified stylesheet has some unexpected margin quirks. Signed-off-by: Jo-Philipp Wich --- .../htdocs/luci-static/openwrt2020/cascade.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 d394192f50..6ee432f5c9 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 @@ -990,7 +990,7 @@ input[type="password"] + .btn, input[type="password"] + button { border-radius: 0 .25em .25em 0; } -.control-group > select + .btn, .control-group > select + button, { +.control-group > select + .btn, .control-group > select + button { margin-left: .25em; } -- 2.30.2