View | Details | Raw Unified | Return to bug 27661
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-2 / +6 lines)
Lines 1646-1656 input[type='text']:read-only:focus { Link Here
1646
}
1646
}
1647
1647
1648
.status_ok {
1648
.status_ok {
1649
    background-color: #90EE90;
1649
    background-color: #90EE90 !important;
1650
}
1650
}
1651
1651
1652
.status_warn {
1652
.status_warn {
1653
    background-color: #FF0000;
1653
    background-color: #FFA500 !important;
1654
}
1655
1656
.status_fatal {
1657
    background-color: #FF6347 !important;
1654
}
1658
}
1655
1659
1656
// Font Awesome icons
1660
// Font Awesome icons
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-11 / +11 lines)
Lines 111-131 Link Here
111
                </td>
111
                </td>
112
            </tr>
112
            </tr>
113
            <tr><th scope="row">Zebra version: </th><td>[% zebraVersion | html %]</td></tr>
113
            <tr><th scope="row">Zebra version: </th><td>[% zebraVersion | html %]</td></tr>
114
            <tr><th scope="row">Zebra status: </th>
114
            [% IF (errZebraConnection == 10000) %]
115
            [% IF (errZebraConnection == 10000) %]
115
            <tr><th scope="row"><strong>Error</strong> </th><td>Zebra server seems not to be available. Is it started?</td></tr>
116
            <td class="status_fatal"><strong>Zebra server seems not to be available. Is it started?</strong></td>
116
            [% ELSIF (errZebraConnection) %]
117
            [% ELSIF (errZebraConnection) %]
117
            <tr><th scope="row"><strong>Warning</strong> </th><td>Error message from Zebra: [% ( errZebraConnection ) | html %] </td></tr>
118
            <td class="status_warn"><strong>Error message from Zebra: [% ( errZebraConnection ) | html %]</strong></td>
119
            [% ELSE %]
120
            <td class="status_ok">Running</td>
118
            [% END %]
121
            [% END %]
122
            </tr>
119
            <tr>
123
            <tr>
120
                <th scope="row">Message broker: </th>
124
                <th scope="row">Message broker: </th>
121
                <td>
125
                [% IF warnConnectBroker %]
122
                    Status:
126
                <td class="status_warn"><strong>Using SQL Polling</strong></td>
123
                    [% IF warnConnectBroker %]
127
                [% ELSE %]
124
                        <span class="status_warn">connection failed</span>
128
                <td class="status_ok">Using RabbitMQ</td>
125
                    [% ELSE %]
129
                [% END %]
126
                        <span class="status_ok">running</span>
127
                    [% END %]
128
                </td>
129
            </tr>
130
            </tr>
130
            <tr>
131
            <tr>
131
              <th scope="row">Date and time: </th>
132
              <th scope="row">Date and time: </th>
132
- 

Return to bug 27661