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 <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2020-03-31 17:03:56 +02:00
parent 8cb1f8b45a
commit 65a461e8a0

View file

@ -990,7 +990,7 @@ input[type="password"] + .btn, input[type="password"] + button {
border-radius: 0 .25em .25em 0; 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; margin-left: .25em;
} }