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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (+6 lines)
Lines 289-294 tr.warn:nth-child(odd) td { Link Here
289
	background-color: #FF9090;
289
	background-color: #FF9090;
290
}
290
}
291
291
292
tr.ok td,
293
tr.ok:nth-child(odd) td,
294
tr.ok:nth-child(even) td {
295
 background-color: #FFFFCC;
296
}
297
292
tr.onissue td {
298
tr.onissue td {
293
	background-color: #FFFFCC;
299
	background-color: #FFFFCC;
294
}
300
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js (-1 / +3 lines)
Lines 65-72 $(document).ready(function() { Link Here
65
                content = "";
65
                content = "";
66
                if ( data.returned ) {
66
                if ( data.returned ) {
67
                    content = CIRCULATION_RETURNED;
67
                    content = CIRCULATION_RETURNED;
68
                    $(id).parent().parent().addClass('ok');
69
                    $('#date_due_' + data.itemnumber).html(_("Returned"));
68
                } else {
70
                } else {
69
                    content = CIRCULATION_NOT_RETURNED;
71
                    content = CIRCULATION_NOT_RETURNED;
72
                    $(id).parent().parent().addClass('warn');
70
                }
73
                }
71
74
72
                $(id).replaceWith( content );
75
                $(id).replaceWith( content );
73
- 

Return to bug 13290