luci-mod-status: use generic .cbi-section-actions style for row actions

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 4fa409c7c4)
This commit is contained in:
Jo-Philipp Wich 2020-03-23 21:55:50 +01:00
parent 40a4677a25
commit 4eb411757e

View file

@ -39,7 +39,7 @@ return 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)
@ -71,7 +71,7 @@ return 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' })
])
])
]);