summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2020-03-23 21:55:50 +0100
committerJo-Philipp Wich <jo@mein.io>2020-03-23 21:55:50 +0100
commit4fa409c7c47830010d4b96b2201b2cf530d360da (patch)
treefc0847bf0ec1320e5a6676500f869af5f1d4cff4
parent9706388c42b7490cfdbdad8cc32012870211524d (diff)
luci-mod-status: use generic .cbi-section-actions style for row actions
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rw-r--r--modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js
index b996b78ce..d56eca507 100644
--- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js
+++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js
@@ -38,7 +38,7 @@ return L.view.extend({
proc.COMMAND,
proc['%CPU'],
proc['%MEM'],
- E('div', { 'class': 'nowrap' }, [
+ E('div', {}, [
E('button', {
'class': 'btn cbi-button-action',
'click': ui.createHandlerFn(this, 'handleSignal', 1, proc.PID)
@@ -70,7 +70,7 @@ return L.view.extend({
E('div', { 'class': 'th' }, _('Command')),
E('div', { 'class': 'th' }, _('CPU usage (%)')),
E('div', { 'class': 'th' }, _('Memory usage (%)')),
- E('div', { 'class': 'th center' }, _('Actions'))
+ E('div', { 'class': 'th center nowrap cbi-section-actions' })
])
])
]);