From: Michael Tremer Date: Fri, 6 Sep 2024 16:02:26 +0000 (+0200) Subject: services.cgi: Don't always try expand the status column unless asked X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=397e0c527192382ed628df6d8ec767fef2240a54;p=people%2Fms%2Fipfire-2.x.git services.cgi: Don't always try expand the status column unless asked Signed-off-by: Michael Tremer --- diff --git a/html/cgi-bin/services.cgi b/html/cgi-bin/services.cgi index 43babf522..462b6bfa1 100644 --- a/html/cgi-bin/services.cgi +++ b/html/cgi-bin/services.cgi @@ -205,7 +205,7 @@ sub isautorun (@) { sub isrunningaddon (@) { my ($pak, $service) = @_; - my $status = "$Lang::tr{'stopped'}"; + my $status = "$Lang::tr{'stopped'}"; my $testcmd = ''; my $exename; @@ -234,7 +234,7 @@ sub isrunningaddon (@) { $status .="$memory"; }else{ $status = "$Lang::tr{"; - $status .= "$Lang::tr{'stopped'}"; + $status .= "$Lang::tr{'stopped'}"; } return $status; } diff --git a/html/html/themes/ipfire/include/css/style.css b/html/html/themes/ipfire/include/css/style.css index dd97e41ed..c59889326 100644 --- a/html/html/themes/ipfire/include/css/style.css +++ b/html/html/themes/ipfire/include/css/style.css @@ -497,7 +497,9 @@ table.form tr.action td form { .tbl .status.is-stopped, .tbl .status.is-disconnected { background-color: var(--color-red); color: var(--color-red-invert); +} +.tbl .status.is-fixed { width: 33%; }