diff options
author | Florian Eckert <fe@dev.tdt.de> | 2024-06-07 12:51:57 +0200 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2024-07-09 16:19:51 +0200 |
commit | bff2a433954da91c67d6228e2eb76ff074b8d64d (patch) | |
tree | 2300b13fa0c4a64cff1b776ba79b2e06a4666ebc | |
parent | 3162128e2fa0375a86a5c58a7fa1e226cd5dff75 (diff) |
luci-app-opkg: replace css class right with css class button-row
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
-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) { |