summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base/htdocs/luci-static
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2022-05-16 16:04:56 +0200
committerJo-Philipp Wich <jo@mein.io>2022-05-16 16:04:56 +0200
commit4e090e38d2cb606936768847ab0f5526f95be793 (patch)
tree48a0375392dd26e3f1721179214d69f0ebdd2ba9 /modules/luci-base/htdocs/luci-static
parente4e001b59657e4cd0f333a3f43ce66b8f789deb2 (diff)
luci-base: luci.js: remove wrong CSS class from page footer
The `control-group` class is meant for gapless grouping of inputs with buttons, while the page actions are just distinct buttons in a row. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base/htdocs/luci-static')
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/luci.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js
index 529a33ca3b..ffa1c002b8 100644
--- a/modules/luci-base/htdocs/luci-static/resources/luci.js
+++ b/modules/luci-base/htdocs/luci-static/resources/luci.js
@@ -2183,7 +2183,7 @@
}).render() : E([]);
if (this.handleSaveApply || this.handleSave || this.handleReset) {
- footer.appendChild(E('div', { 'class': 'cbi-page-actions control-group' }, [
+ footer.appendChild(E('div', { 'class': 'cbi-page-actions' }, [
saveApplyBtn, ' ',
this.handleSave ? E('button', {
'class': 'cbi-button cbi-button-save',