luci-mod-status: use generic .cbi-section-actions style for row actions
authorJo-Philipp Wich <jo@mein.io>
Mon, 23 Mar 2020 20:55:50 +0000 (21:55 +0100)
committerJo-Philipp Wich <jo@mein.io>
Mon, 23 Mar 2020 20:55:50 +0000 (21:55 +0100)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js

index b996b78ce5e020a5ec68395aef31abfa663c3621..d56eca5071966202bba83df12e7b6134ca2e2b2e 100644 (file)
@@ -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' })
                                ])
                        ])
                ]);