@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -239,7 +239,7 @@ $(document).ready(function() { } if ( oObj.itemnotes ) { - var span_class = ""; + var span_class = "text-muted"; if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { span_class = "circ-hlt"; } @@ -247,7 +247,7 @@ $(document).ready(function() { } if ( oObj.itemnotes_nonpublic ) { - var span_class = ""; + var span_class = "text-danger"; if ( $.datepicker.formatDate('yy-mm-dd', new Date(oObj.issuedate) ) == ymd ) { span_class = "circ-hlt"; } --