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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (-1 / +7 lines)
Lines 285-290 tr.warn:nth-child(odd) td { Link Here
285
	background-color: #FF9090;
285
	background-color: #FF9090;
286
}
286
}
287
287
288
tr.ok td,
289
tr.ok:nth-child(odd) td,
290
tr.ok:nth-child(even) td {
291
 background-color: #FFFFCC;
292
}
293
288
tr.onissue td {
294
tr.onissue td {
289
	background-color: #FFFFCC;
295
	background-color: #FFFFCC;
290
}
296
}
Lines 2730-2733 span.onsite_checkout { Link Here
2730
    background-color : rgba(255, 242, 206, 0.5);
2736
    background-color : rgba(255, 242, 206, 0.5);
2731
    border-radius: 4px;
2737
    border-radius: 4px;
2732
    border : 1px solid #FFF2CE;
2738
    border : 1px solid #FFF2CE;
2733
}
2739
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js (-1 / +2 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');
68
                } else {
69
                } else {
69
                    content = CIRCULATION_NOT_RETURNED;
70
                    content = CIRCULATION_NOT_RETURNED;
71
                    $(id).parent().parent().addClass('warn');
70
                }
72
                }
71
73
72
                $(id).replaceWith( content );
74
                $(id).replaceWith( content );
73
- 

Return to bug 13290