diff options
author | Florian Eckert <fe@dev.tdt.de> | 2024-07-17 09:31:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-17 09:31:52 +0200 |
commit | a0dcba5b7893960d4f8194aa2cfd1edd488462c2 (patch) | |
tree | 5590b553302033dd9a33f62940ad35a257cab213 /applications/luci-app-opkg | |
parent | ff4dead03f8251b5ce8337b9814051c650fedb1b (diff) | |
parent | 6d2657f468f1b58f71e4d7f001f7fd00cb62a451 (diff) |
Merge pull request #7153 from TDT-AG/pr/20240607-luci-base
treewide: add new css class button-row
Diffstat (limited to 'applications/luci-app-opkg')
-rw-r--r-- | applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js b/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js index bb21cca687..053d74729f 100644 --- a/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js +++ b/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js @@ -886,7 +886,7 @@ function handleConfig(ev) }, '%h'.format(conf[file]))); }); - body.push(E('div', { 'class': 'right' }, [ + body.push(E('div', { 'class': 'button-row' }, [ E('div', { 'class': 'btn cbi-button-neutral', 'click': ui.hideModal @@ -1012,7 +1012,7 @@ function handleOpkg(ev) if (res.code !== 0) dlg.appendChild(E('p', _('The <em>opkg %h</em> command failed with code <code>%d</code>.').format(cmd, (res.code & 0xff) || -1))); - dlg.appendChild(E('div', { 'class': 'right' }, + dlg.appendChild(E('div', { 'class': 'button-row' }, E('div', { 'class': 'btn', 'click': L.bind(function(res) { |