@@ -, +, @@ --- .../prog/css/src/staff-global.scss | 8 +++++-- .../intranet-tmpl/prog/en/modules/about.tt | 21 ++++++++++--------- 2 files changed, 17 insertions(+), 12 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -1646,11 +1646,15 @@ input[type='text']:read-only:focus { } .status_ok { - background-color: #90EE90; + background-color: #90EE90 !important; } .status_warn { - background-color: #FF0000; + background-color: #FFA500 !important; +} + +.status_fatal { + background-color: #FF6347 !important; } // Font Awesome icons --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -111,21 +111,22 @@ Zebra version: [% zebraVersion | html %] + Zebra status: [% IF (errZebraConnection == 10000) %] - Error Zebra server seems not to be available. Is it started? + Zebra server seems not to be available. Is it started? [% ELSIF (errZebraConnection) %] - Warning Error message from Zebra: [% ( errZebraConnection ) | html %] + Error message from Zebra: [% ( errZebraConnection ) | html %] + [% ELSE %] + Running [% END %] + Message broker: - - Status: - [% IF warnConnectBroker %] - connection failed - [% ELSE %] - running - [% END %] - + [% IF warnConnectBroker %] + Using SQL Polling + [% ELSE %] + Using RabbitMQ + [% END %] Date and time: --