@@ -, +, @@ output --- .../intranet-tmpl/prog/css/src/staff-global.scss | 13 +++++++++---- koha-tmpl/intranet-tmpl/prog/js/staff-global.js | 16 ++++++++++------ 2 files changed, 19 insertions(+), 10 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -2781,6 +2781,10 @@ td.bundle { } } } + + .badge { + font-size: 90%; + } } .ui-autocomplete-loading { @@ -4337,11 +4341,8 @@ div .suggestion_note { .ac-library { background-color: #EEE !important; - border-radius: 4px; + font-weight: normal; color: #000; - display: inline-block; - font-size: 80%; - padding: 1px 4px !important; } .ac-currentlibrary { @@ -4351,6 +4352,10 @@ div .suggestion_note { } } +.badge + .badge { + margin-left: .3rem; +} + .currentlibrary { background-color: #E6FCB7 !important; display: inline-block; --- a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js +++ a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js @@ -694,7 +694,7 @@ function patron_autocomplete(node, options) { " " + (item.other_name ? "(" + item.other_name.escapeHtml() + ")" : "") + cardnumber.escapeHtml() + - " " + + " " + (item.date_of_birth ? $date(item.date_of_birth) + ' (' + @@ -710,15 +710,19 @@ function patron_autocomplete(node, options) { }) + " " + (!singleBranchMode - ? '' + + ? '' + item.library.name.escapeHtml() + "" : "") + - "" + (expired - ? '' + - __("expired") + - "" + ? '' + + __("Expired") + + "" + : "") + + (item.restricted + ? '' + + __("Restricted") + + "" : "") + "" ) --