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>
This commit is contained in:
parent
e4e001b596
commit
4e090e38d2
1 changed files with 1 additions and 1 deletions
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue