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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_variables.scss (-17 / +17 lines)
Lines 36-42 $grays: ( Link Here
36
// fusv-enable
36
// fusv-enable
37
37
38
// scss-docs-start color-variables
38
// scss-docs-start color-variables
39
$blue:    #0d6efd;
39
$blue:    #5d9efe;
40
$indigo:  #6610f2;
40
$indigo:  #6610f2;
41
$purple:  #6f42c1;
41
$purple:  #6f42c1;
42
$pink:    #d63384;
42
$pink:    #d63384;
Lines 45-51 $orange: #fd7e14; Link Here
45
$yellow:  #ffc107;
45
$yellow:  #ffc107;
46
$green:   #408540;
46
$green:   #408540;
47
$teal:    #20c997;
47
$teal:    #20c997;
48
$cyan:    #0dcaf0;
48
$cyan:    #84c1f3;
49
// scss-docs-end color-variables
49
// scss-docs-end color-variables
50
50
51
$background-color-primary: #408540;
51
$background-color-primary: #408540;
Lines 304-312 $cyans: ( Link Here
304
$primary:       $yellow; // $blue !default;
304
$primary:       $yellow; // $blue !default;
305
$secondary:     $gray-600; // $gray-600 !default;
305
$secondary:     $gray-600; // $gray-600 !default;
306
$success:       $green; // $green !default;
306
$success:       $green; // $green !default;
307
$info:          $blue-300; // $blue-100; // $cyan !default;
307
$info:          $cyan; // $blue-100; // $cyan !default;
308
$warning:       $yellow; // $yellow !default;
308
$warning:       #ffe407; // $yellow !default;
309
$danger:        #f2dede; // $red !default;
309
$danger:        $red; // $red !default;
310
$light:         #FFF; // $gray-100 !default;
310
$light:         #FFF; // $gray-100 !default;
311
$dark:          #352c2e; // $gray-900 !default;
311
$dark:          #352c2e; // $gray-900 !default;
312
// scss-docs-end theme-color-variables
312
// scss-docs-end theme-color-variables
Lines 336-358 $dark-text-emphasis: $gray-700; Link Here
336
// scss-docs-end theme-text-variables
336
// scss-docs-end theme-text-variables
337
337
338
// scss-docs-start theme-bg-subtle-variables
338
// scss-docs-start theme-bg-subtle-variables
339
$primary-bg-subtle:       tint-color($primary, 80%);
339
$primary-bg-subtle:       tint-color($primary, 70%);
340
$secondary-bg-subtle:     tint-color($secondary, 80%);
340
$secondary-bg-subtle:     tint-color($secondary, 70%);
341
$success-bg-subtle:       tint-color($success, 80%);
341
$success-bg-subtle:       tint-color($success, 70%);
342
$info-bg-subtle:          tint-color($info, 80%);
342
$info-bg-subtle:          tint-color($info, 70%);
343
$warning-bg-subtle:       tint-color($warning, 80%);
343
$warning-bg-subtle:       tint-color($warning, 70%);
344
$danger-bg-subtle:        tint-color($danger, 80%);
344
$danger-bg-subtle:        tint-color($danger, 70%);
345
$light-bg-subtle:         mix($gray-100, $white);
345
$light-bg-subtle:         mix($gray-100, $white);
346
$dark-bg-subtle:          $gray-400;
346
$dark-bg-subtle:          $gray-400;
347
// scss-docs-end theme-bg-subtle-variables
347
// scss-docs-end theme-bg-subtle-variables
348
348
349
// scss-docs-start theme-border-subtle-variables
349
// scss-docs-start theme-border-subtle-variables
350
$primary-border-subtle:   tint-color($primary, 60%);
350
$primary-border-subtle:   tint-color($primary, 40%);
351
$secondary-border-subtle: tint-color($secondary, 60%);
351
$secondary-border-subtle: tint-color($secondary, 40%);
352
$success-border-subtle:   tint-color($success, 60%);
352
$success-border-subtle:   tint-color($success, 40%);
353
$info-border-subtle:      tint-color($info, 60%);
353
$info-border-subtle:      tint-color($info, 40%);
354
$warning-border-subtle:   tint-color($warning, 60%);
354
$warning-border-subtle:   tint-color($warning, 40%);
355
$danger-border-subtle:    tint-color($danger, 60%);
355
$danger-border-subtle:    tint-color($danger, 40%);
356
$light-border-subtle:     $gray-200;
356
$light-border-subtle:     $gray-200;
357
$dark-border-subtle:      $gray-500;
357
$dark-border-subtle:      $gray-500;
358
// scss-docs-end theme-border-subtle-variables
358
// scss-docs-end theme-border-subtle-variables
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-28 / +4 lines)
Lines 78-111 $enable-dark-mode: false; Link Here
78
    )
78
    )
79
}
79
}
80
80
81
.text-bg-primary {
81
.badge {
82
    background-color: shift-color( $primary, -55% );
82
    &[class$="-subtle"] {
83
    color: $black;
83
        color: #000;
84
}
84
    }
85
86
.text-bg-secondary {
87
    background-color: shift-color( $secondary, -55% );
88
    color: $black;
89
}
90
91
.text-bg-success {
92
    background-color: shift-color( $success, -55% );
93
    color: $black;
94
}
95
96
.text-bg-info {
97
    background-color: shift-color( $info, -55% );
98
    color: $black;
99
}
100
101
.text-bg-warning {
102
    background-color: shift-color( $warning, -55% );
103
    color: $black;
104
}
105
106
.text-bg-danger {
107
    background-color: shift-color( $danger, -55% );
108
    color: $black;
109
}
85
}
110
86
111
::selection {
87
::selection {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-detail-tabs.inc (-1 / +1 lines)
Lines 50-56 Link Here
50
                    ([% IF patron.return_claims.resolved.count == 0 %]
50
                    ([% IF patron.return_claims.resolved.count == 0 %]
51
                        <span title="Resolved claims" class="badge text-bg-info" id="return-claims-count-resolved">[% patron.return_claims.resolved.count | html %]</span>
51
                        <span title="Resolved claims" class="badge text-bg-info" id="return-claims-count-resolved">[% patron.return_claims.resolved.count | html %]</span>
52
                    [% ELSE %]
52
                    [% ELSE %]
53
                        <span title="Resolved claims" class="badge text-bg-success" id="return-claims-count-resolved">[% patron.return_claims.resolved.count | html %]</span>
53
                        <span title="Resolved claims" class="badge text-bg-info" id="return-claims-count-resolved">[% patron.return_claims.resolved.count | html %]</span>
54
                    [% END %]
54
                    [% END %]
55
                    [% IF patron.return_claims.unresolved.count == 0 %]
55
                    [% IF patron.return_claims.unresolved.count == 0 %]
56
                        <span title="Unresolved claims" class="badge text-bg-info" id="return-claims-count-unresolved">[% patron.return_claims.unresolved.count | html %]</span>
56
                        <span title="Unresolved claims" class="badge text-bg-info" id="return-claims-count-unresolved">[% patron.return_claims.unresolved.count | html %]</span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-18 / +18 lines)
Lines 130-139 Link Here
130
                <tr>
130
                <tr>
131
                    <th scope="row">Elasticsearch: </th>
131
                    <th scope="row">Elasticsearch: </th>
132
                    [% IF elasticsearch_fatal_config_error %]
132
                    [% IF elasticsearch_fatal_config_error %]
133
                        <td><span class="text-bg-warning">[% elasticsearch_fatal_config_error | html %]</span></td>
133
                        <td><span class="bg-warning-subtle">[% elasticsearch_fatal_config_error | html %]</span></td>
134
                    [% ELSE %]
134
                    [% ELSE %]
135
                        [% IF elasticsearch_status.running %]
135
                        [% IF elasticsearch_status.running %]
136
                            [% SET td_class="text-bg-info" %]
136
                            [% SET td_class="bg-info-subtle" %]
137
                        [% END %]
137
                        [% END %]
138
                        <td class="[% td_class | html %]">
138
                        <td class="[% td_class | html %]">
139
                            <span>Version:</span>
139
                            <span>Version:</span>
Lines 152-158 Link Here
152
                                    (<span>count:</span> <em>[% index.index_count | html %]</em>) [% UNLESS loop.last %],[% END %]
152
                                    (<span>count:</span> <em>[% index.index_count | html %]</em>) [% UNLESS loop.last %],[% END %]
153
                                [% END %]
153
                                [% END %]
154
                            [% ELSE %]
154
                            [% ELSE %]
155
                                <span class="text-bg-warning">not running</span>
155
                                <span class="bg-warning-subtle">not running</span>
156
                            [% END %]
156
                            [% END %]
157
                        </td>
157
                        </td>
158
                    [% END # /IF elasticsearch_fatal_config_error %]
158
                    [% END # /IF elasticsearch_fatal_config_error %]
Lines 161-167 Link Here
161
            <tr>
161
            <tr>
162
                <th scope="row">Memcached: </th>
162
                <th scope="row">Memcached: </th>
163
                [% IF memcached_running AND is_memcached_still_active AND where_is_memcached_config == 'config_only' %]
163
                [% IF memcached_running AND is_memcached_still_active AND where_is_memcached_config == 'config_only' %]
164
                    [% SET td_class="text-bg-info" %]
164
                    [% SET td_class="bg-info-subtle" %]
165
                [% END %]
165
                [% END %]
166
                <td class="[% td_class | html %]">
166
                <td class="[% td_class | html %]">
167
                    <span>Servers:</span>
167
                    <span>Servers:</span>
Lines 181-189 Link Here
181
                    <span>Status:</span>
181
                    <span>Status:</span>
182
                    [% IF memcached_servers %]
182
                    [% IF memcached_servers %]
183
                        [% IF memcached_running and is_memcached_still_active %]
183
                        [% IF memcached_running and is_memcached_still_active %]
184
                            <span class="text-bg-info">running</span>.
184
                            <span class="bg-info-subtle">running</span>.
185
                        [% ELSE %]
185
                        [% ELSE %]
186
                            <span class="text-bg-warning">not running</span>.
186
                            <span class="bg-warning-subtle">not running</span>.
187
                            [% IF is_psgi %]
187
                            [% IF is_psgi %]
188
                                <span>Remember memcached needs to be started before Plack.</span>
188
                                <span>Remember memcached needs to be started before Plack.</span>
189
                            [% END %]
189
                            [% END %]
Lines 195-208 Link Here
195
                    <span>Config read from:</span>
195
                    <span>Config read from:</span>
196
                    [% SWITCH where_is_memcached_config %]
196
                    [% SWITCH where_is_memcached_config %]
197
                    [% CASE 'config_only' %]
197
                    [% CASE 'config_only' %]
198
                        <span class="text-bg-info">koha-conf.xml</span>
198
                        <span class="bg-info-subtle">koha-conf.xml</span>
199
                    [% CASE 'ENV_only' %]
199
                    [% CASE 'ENV_only' %]
200
                        <span class="text-bg-warning">ENV</span> <span>Note that the right place to define the memcached config is in your $KOHA_CONF file</span>
200
                        <span class="bg-warning-subtle">ENV</span> <span>Note that the right place to define the memcached config is in your $KOHA_CONF file</span>
201
                    [% CASE 'both' %]
201
                    [% CASE 'both' %]
202
                        <span class="text-bg-warning">ENV and koha-conf.xml</span>
202
                        <span class="bg-warning-subtle">ENV and koha-conf.xml</span>
203
                        <span>Note that the right place to define the memcached config is in your $KOHA_CONF file. To avoid any misunderstanding you should not export the memcached config from ENV.</span>
203
                        <span>Note that the right place to define the memcached config is in your $KOHA_CONF file. To avoid any misunderstanding you should not export the memcached config from ENV.</span>
204
                    [% CASE # nowhere %]
204
                    [% CASE # nowhere %]
205
                        <span class="text-bg-warning">Nowhere</span> <span>Note that the right place to define the memcached config is in your $KOHA_CONF file. Currently you do not have a valid memcached configuration defined.</span>
205
                        <span class="bg-warning-subtle">Nowhere</span> <span>Note that the right place to define the memcached config is in your $KOHA_CONF file. Currently you do not have a valid memcached configuration defined.</span>
206
                    [% END %]
206
                    [% END %]
207
                    [% IF effective_caching_method != 'Cache::Memcached::Fast::Safe' %]
207
                    [% IF effective_caching_method != 'Cache::Memcached::Fast::Safe' %]
208
                        | <span>Effective caching method:</span> [% effective_caching_method | html %]
208
                        | <span>Effective caching method:</span> [% effective_caching_method | html %]
Lines 216-237 Link Here
216
            <tr>
216
            <tr>
217
                <th scope="row">Zebra status: </th>
217
                <th scope="row">Zebra status: </th>
218
                [% IF (errZebraConnection == 10000) %]
218
                [% IF (errZebraConnection == 10000) %]
219
                    <td class="text-bg-danger"><strong>Zebra server seems not to be available. Is it started?</strong></td>
219
                    <td class="bg-danger-subtle"><strong>Zebra server seems not to be available. Is it started?</strong></td>
220
                [% ELSIF (errZebraConnection) %]
220
                [% ELSIF (errZebraConnection) %]
221
                    <td class="text-bg-warning"><strong>Error message from Zebra: [% ( errZebraConnection ) | html %]</strong></td>
221
                    <td class="bg-warning-subtle"><strong>Error message from Zebra: [% ( errZebraConnection ) | html %]</strong></td>
222
                [% ELSE %]
222
                [% ELSE %]
223
                    <td class="text-bg-info">Running</td>
223
                    <td class="bg-info-subtle">Running</td>
224
                [% END %]
224
                [% END %]
225
            </tr>
225
            </tr>
226
            <tr>
226
            <tr>
227
                <th scope="row">Message broker: </th>
227
                <th scope="row">Message broker: </th>
228
                [% IF warnConnectBroker %]
228
                [% IF warnConnectBroker %]
229
                    <td class="text-bg-warning"><strong>Using SQL polling (Fallback, Error connecting to RabbitMQ)</strong></td>
229
                    <td class="bg-warning-subtle"><strong>Using SQL polling (Fallback, Error connecting to RabbitMQ)</strong></td>
230
                [% ELSE %]
230
                [% ELSE %]
231
                    [% IF Koha.Preference('JobsNotificationMethod') == 'polling' %]
231
                    [% IF Koha.Preference('JobsNotificationMethod') == 'polling' %]
232
                        <td class="text-bg-info">Using SQL polling</td>
232
                        <td class="bg-info-subtle">Using SQL polling</td>
233
                    [% ELSE %]
233
                    [% ELSE %]
234
                        <td class="text-bg-info">Using RabbitMQ</td>
234
                        <td class="bg-info-subtle">Using RabbitMQ</td>
235
                    [% END %]
235
                    [% END %]
236
                [% END %]
236
                [% END %]
237
            </tr>
237
            </tr>
Lines 240-247 Link Here
240
                <td>[% current_date_and_time | $KohaDates  with_hours => 1 %]</td>
240
                <td>[% current_date_and_time | $KohaDates  with_hours => 1 %]</td>
241
            </tr>
241
            </tr>
242
            <tr>
242
            <tr>
243
                [% timezone_config_class = (time_zone.config_invalid) ? 'text-bg-warning' : '' %]
243
                [% timezone_config_class = (time_zone.config_invalid) ? 'bg-warning-subtle' : '' %]
244
                [% timezone_env_class    = (time_zone.env_invalid)    ? 'text-bg-warning' : '' %]
244
                [% timezone_env_class    = (time_zone.env_invalid)    ? 'bg-warning-subtle' : '' %]
245
                <th scope="row">Time zone: </th>
245
                <th scope="row">Time zone: </th>
246
                <td>
246
                <td>
247
                    <span>Used:</span> <span>[% time_zone.actual | html %]</span>
247
                    <span>Used:</span> <span>[% time_zone.actual | html %]</span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-2 / +2 lines)
Lines 188-194 Link Here
188
                [% IF ( holdcount ) %]
188
                [% IF ( holdcount ) %]
189
                    <span class="results_summary">
189
                    <span class="results_summary">
190
                        <span class="label">Holds:</span>
190
                        <span class="label">Holds:</span>
191
                        <span class="badge text-bg-info">
191
                        <span class="badge bg-info-subtle">
192
                            [% IF CAN_user_reserveforothers_place_holds %]
192
                            [% IF CAN_user_reserveforothers_place_holds %]
193
                                <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber | uri %]">[% holdcount | html %]</a>
193
                                <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber | uri %]">[% holdcount | html %]</a>
194
                            [% ELSE %]
194
                            [% ELSE %]
Lines 216-222 Link Here
216
                [% IF ( article_requests_count = biblio.article_requests.filter_by_current.count ) %]
216
                [% IF ( article_requests_count = biblio.article_requests.filter_by_current.count ) %]
217
                    <span class="results_summary">
217
                    <span class="results_summary">
218
                        <span class="label">Article requests:</span>
218
                        <span class="label">Article requests:</span>
219
                        <span class="badge text-bg-info">
219
                        <span class="badge bg-info-subtle">
220
                            <a href="/cgi-bin/koha/circ/request-article.pl?biblionumber=[% biblionumber | uri %]">[% article_requests_count | html %]</a>
220
                            <a href="/cgi-bin/koha/circ/request-article.pl?biblionumber=[% biblionumber | uri %]">[% article_requests_count | html %]</a>
221
                        </span>
221
                        </span>
222
                    </span>
222
                    </span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-1 / +1 lines)
Lines 45-51 Link Here
45
    [% END #/ WRAPPER breadcrumbs %]
45
    [% END #/ WRAPPER breadcrumbs %]
46
[% END #/ WRAPPER sub-header.inc %]
46
[% END #/ WRAPPER sub-header.inc %]
47
47
48
[% SET aside = Koha.Preference('CircSidebar') ? 'circ-nav' : '' %]
48
[% SET aside = Koha.Preference('CircSidebar') ? 'circ-menu' : '' %]
49
[% WRAPPER 'main-container.inc' aside=aside %]
49
[% WRAPPER 'main-container.inc' aside=aside %]
50
    [% IF patron %]
50
    [% IF patron %]
51
        [% INCLUDE 'members-toolbar.inc' %]
51
        [% INCLUDE 'members-toolbar.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-1 / +1 lines)
Lines 1395-1401 Link Here
1395
                                [% IF issues_count %]
1395
                                [% IF issues_count %]
1396
                                    <span class="results_summary nowrap">
1396
                                    <span class="results_summary nowrap">
1397
                                        <span class="label">Checkouts:</span>
1397
                                        <span class="label">Checkouts:</span>
1398
                                        <span class="badge text-bg-info">
1398
                                        <span class="badge bg-info-subtle">
1399
                                            <a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% checkin.patron.borrowernumber | uri %]">[% issues_count | html %]</a>
1399
                                            <a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% checkin.patron.borrowernumber | uri %]">[% issues_count | html %]</a>
1400
                                        </span>
1400
                                        </span>
1401
                                    </span>
1401
                                    </span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt (-1 / +1 lines)
Lines 56-62 Link Here
56
                [% IF CAN_user_borrowers_edit_borrowers && pending_borrower_modifications %]
56
                [% IF CAN_user_borrowers_edit_borrowers && pending_borrower_modifications %]
57
                    <div class="pending-info" id="patron_updates_pending">
57
                    <div class="pending-info" id="patron_updates_pending">
58
                        <a href="/cgi-bin/koha/members/members-update.pl">Patrons requesting modifications</a>:
58
                        <a href="/cgi-bin/koha/members/members-update.pl">Patrons requesting modifications</a>:
59
                        <span class="badge text-bg-info"><a href="/cgi-bin/koha/members/members-update.pl">[% pending_borrower_modifications | html %]</a></span>
59
                        <span class="badge bg-info-subtle"><a href="/cgi-bin/koha/members/members-update.pl">[% pending_borrower_modifications | html %]</a></span>
60
                    </div>
60
                    </div>
61
                [% END %]
61
                [% END %]
62
62
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt (-1 / +1 lines)
Lines 46-52 Link Here
46
                </ol>
46
                </ol>
47
            </div>
47
            </div>
48
48
49
            <p> The patron category you create will be used by the <span class="bg-info">administrator account</span>.</p>
49
            <p> The patron category you create will be used by the <span class="bg-info-subtle">administrator account</span>.</p>
50
50
51
            <form id="category_form" method="post" action="onboarding.pl">
51
            <form id="category_form" method="post" action="onboarding.pl">
52
                [% INCLUDE 'csrf-token.inc' %]
52
                [% INCLUDE 'csrf-token.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-1 / +1 lines)
Lines 1243-1249 Link Here
1243
                                [% IF ( multi_hold ) %]
1243
                                [% IF ( multi_hold ) %]
1244
                                    <h3>
1244
                                    <h3>
1245
                                        <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblioloo.biblionumber | uri %]"> [% biblioloo.title | html %] </a>
1245
                                        <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblioloo.biblionumber | uri %]"> [% biblioloo.title | html %] </a>
1246
                                        <span class="badge text-bg-info"><span>[% biblioloo.reserveloop.size | html %] [% tn('Hold', 'Holds', biblioloo.reserveloop.size) | $raw %]</span></span>
1246
                                        <span class="badge bg-info-subtle"><span>[% biblioloo.reserveloop.size | html %] [% tn('Hold', 'Holds', biblioloo.reserveloop.size) | $raw %]</span></span>
1247
                                    </h3>
1247
                                    </h3>
1248
                                [% END %]
1248
                                [% END %]
1249
1249
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt (-1 / +1 lines)
Lines 837-843 Link Here
837
                                                                [% END %]
837
                                                                [% END %]
838
                                                                <br />
838
                                                                <br />
839
                                                                [% IF ( s.note ) %]
839
                                                                [% IF ( s.note ) %]
840
                                                                    <div class="suggestion_note"><i class="fa fa-comment"></i> [% s.note | html %]</div>
840
                                                                    <div class="suggestion_note">[% s.note | html %]</div>
841
                                                                [% END %]
841
                                                                [% END %]
842
                                                                [% IF s.archived %]
842
                                                                [% IF s.archived %]
843
                                                                    <br /><i class="fa fa-archive"></i> Archived
843
                                                                    <br /><i class="fa fa-archive"></i> Archived
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt (-2 / +2 lines)
Lines 47-53 Link Here
47
                    <dt>
47
                    <dt>
48
                        <a href="/cgi-bin/koha/reviews/reviewswaiting.pl">Comments</a>
48
                        <a href="/cgi-bin/koha/reviews/reviewswaiting.pl">Comments</a>
49
                        [% IF ( pendingcomments ) %]
49
                        [% IF ( pendingcomments ) %]
50
                            <span class="badge text-bg-info"><a href="/cgi-bin/koha/reviews/reviewswaiting.pl">[% pendingcomments | html %]</a></span>
50
                            <span class="badge bg-info-subtle"><a href="/cgi-bin/koha/reviews/reviewswaiting.pl">[% pendingcomments | html %]</a></span>
51
                        [% END %]
51
                        [% END %]
52
                    </dt>
52
                    </dt>
53
                    <dd>Moderate patron comments</dd>
53
                    <dd>Moderate patron comments</dd>
Lines 92-98 Link Here
92
                    <dt>
92
                    <dt>
93
                        <a href="/cgi-bin/koha/tags/review.pl">Tags</a>
93
                        <a href="/cgi-bin/koha/tags/review.pl">Tags</a>
94
                        [% IF ( pendingtags ) %]
94
                        [% IF ( pendingtags ) %]
95
                            <span class="badge text-bg-info"><a href="/cgi-bin/koha/tags/review.pl">[% pendingtags | html %]</a></span>
95
                            <span class="badge bg-info-subtle"><a href="/cgi-bin/koha/tags/review.pl">[% pendingtags | html %]</a></span>
96
                        [% END %]
96
                        [% END %]
97
                    </dt>
97
                    </dt>
98
                    <dd>Moderate patron tags</dd>
98
                    <dd>Moderate patron tags</dd>
(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-11 lines)
Lines 1557-1573 $(document).ready(function () { Link Here
1557
                        let resolved = json.resolved;
1557
                        let resolved = json.resolved;
1558
                        let unresolved = json.unresolved;
1558
                        let unresolved = json.unresolved;
1559
1559
1560
                        if (resolved > 0) {
1561
                            $("#return-claims-count-resolved")
1562
                                .text(resolved)
1563
                                .removeClass("text-bg-info")
1564
                                .addClass("text-bg-success");
1565
                        } else {
1566
                            $("#return-claims-count-resolved")
1567
                                .text(resolved)
1568
                                .removeClass("text-bg-success")
1569
                                .addClass("text-bg-info");
1570
                        }
1571
                        if (unresolved > 0) {
1560
                        if (unresolved > 0) {
1572
                            $("#return-claims-count-unresolved")
1561
                            $("#return-claims-count-unresolved")
1573
                                .text(unresolved)
1562
                                .text(unresolved)
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-2 / +1 lines)
Lines 446-452 Link Here
446
                                                        <td class="call_no"> [% ISSUE.itemcallnumber | html %] </td>
446
                                                        <td class="call_no"> [% ISSUE.itemcallnumber | html %] </td>
447
                                                        [% IF ( OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions_contains('renew') ) ) %]
447
                                                        [% IF ( OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions_contains('renew') ) ) %]
448
                                                            <td class="renew" data-order="[% ISSUE.status && canrenew ? ISSUE.renewsleft : 0 | html %]">
448
                                                            <td class="renew" data-order="[% ISSUE.status && canrenew ? ISSUE.renewsleft : 0 | html %]">
449
                                                                [% IF ISSUE.renewed %]<span class="bbadge text-bg-success">Renewed!</span><br />[% END %]
449
                                                                [% IF ISSUE.renewed %]<span class="badge text-bg-success">Renewed!</span><br />[% END %]
450
                                                                [% IF ( ISSUE.status ) %]
450
                                                                [% IF ( ISSUE.status ) %]
451
                                                                    [% IF ( canrenew ) %]
451
                                                                    [% IF ( canrenew ) %]
452
                                                                        <input type="checkbox" name="issue" value="[% ISSUE.issue_id | uri %]" />
452
                                                                        <input type="checkbox" name="issue" value="[% ISSUE.issue_id | uri %]" />
453
- 

Return to bug 39274