From: Jo-Philipp Wich Date: Tue, 31 Mar 2020 15:03:56 +0000 (+0200) Subject: luci-theme-openwrt-2020: fix trailing comma in CSS X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=65a461e8a0340a361545d3510918f34edb27920c;p=project%2Fluci.git 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 --- 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; }