diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-03-31 17:03:56 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-03-31 17:05:40 +0200 |
commit | 65a461e8a0340a361545d3510918f34edb27920c (patch) | |
tree | 14b719f67dbc29848da258009451c46e9635b29b /themes | |
parent | 8cb1f8b45a9e57b65053b9003a7d6c6d6db63ebc (diff) |
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>
Diffstat (limited to 'themes')
-rw-r--r-- | themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css | 2 |
1 files changed, 1 insertions, 1 deletions
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 d394192f5..6ee432f5c 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; } |