From: Florian Eckert Date: Mon, 21 Jun 2021 13:02:04 +0000 (+0200) Subject: luci-base: change css class btn to cbi-button X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=215a3141f0cb3aeb166777edcb2690a188230a90;p=project%2Fluci.git luci-base: change css class btn to cbi-button The css class btn is only a valid input element on lua rendered pages. Use instead cbi-button for javascript rendered pages. Signed-off-by: Florian Eckert (cherry picked from commit 80262bb9a7e63eeee0e1fa5f290b27a569a644bf) --- diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js index 9477b3f3c6..29e8fa7f05 100644 --- a/modules/luci-base/htdocs/luci-static/resources/form.js +++ b/modules/luci-base/htdocs/luci-static/resources/form.js @@ -603,7 +603,7 @@ var CBIMap = CBIAbstractElement.extend(/** @lends LuCI.form.Map.prototype */ { E('p', {}, [ _('An error occurred while saving the form:') ]), E('p', {}, [ E('em', { 'style': 'white-space:pre' }, [ e.message ]) ]), E('div', { 'class': 'right' }, [ - E('button', { 'class': 'btn', 'click': ui.hideModal }, [ _('Dismiss') ]) + E('button', { 'class': 'cbi-button', 'click': ui.hideModal }, [ _('Dismiss') ]) ]) ]); } @@ -2639,9 +2639,9 @@ var CBITableSection = CBITypedSection.extend(/** @lends LuCI.form.TableSection.p if (this.sortable) { dom.append(tdEl.lastElementChild, [ - E('div', { + E('button', { 'title': _('Drag to reorder'), - 'class': 'btn cbi-button drag-handle center', + 'class': 'cbi-button drag-handle center', 'style': 'cursor:move', 'disabled': this.map.readonly || null }, '☰') @@ -2879,7 +2879,7 @@ var CBITableSection = CBITypedSection.extend(/** @lends LuCI.form.TableSection.p nodes, E('div', { 'class': 'right' }, [ E('button', { - 'class': 'btn', + 'class': 'cbi-button', 'click': ui.createHandlerFn(this, 'handleModalCancel', m) }, [ _('Dismiss') ]), ' ', E('button', {