From: Florian Eckert Date: Fri, 7 Jun 2024 06:21:16 +0000 (+0200) Subject: luci-base: add missing css class btn to form.js X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=5ae09a4ce16bc705a0a6c907434a461c0984910c;p=openwrt-luci.git luci-base: add missing css class btn to form.js Signed-off-by: Florian Eckert --- diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js index 889f6edd8d..6b0e30d118 100644 --- a/modules/luci-base/htdocs/luci-static/resources/form.js +++ b/modules/luci-base/htdocs/luci-static/resources/form.js @@ -3220,11 +3220,11 @@ var CBITableSection = CBITypedSection.extend(/** @lends LuCI.form.TableSection.p nodes, E('div', { 'class': 'right' }, [ E('button', { - 'class': 'cbi-button', + 'class': 'btn cbi-button', 'click': ui.createHandlerFn(this, 'handleModalCancel', m) }, [ _('Dismiss') ]), ' ', E('button', { - 'class': 'cbi-button cbi-button-positive important', + 'class': 'btn cbi-button cbi-button-positive important', 'click': ui.createHandlerFn(this, 'handleModalSave', m), 'disabled': m.readonly || null }, [ _('Save') ])