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

(-)a/koha-tmpl/intranet-tmpl/prog/css/select2.css (+5 lines)
Lines 44-46 Link Here
44
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
44
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
45
    margin-right: 3px;
45
    margin-right: 3px;
46
}
46
}
47
48
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
49
    clear: none;
50
    width: auto;
51
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-4 / +1 lines)
Lines 2320-2328 Link Here
2320
            let selectFields = document.querySelectorAll('select[multiple]');
2320
            let selectFields = document.querySelectorAll('select[multiple]');
2321
            selectFields.forEach((selectField) => {
2321
            selectFields.forEach((selectField) => {
2322
                selectField.style.minWidth = '320px';
2322
                selectField.style.minWidth = '320px';
2323
                $(selectField).select2({
2323
                $(selectField).select2();
2324
                    closeOnSelect: false,
2325
                });
2326
            });
2324
            });
2327
2325
2328
        });
2326
        });
2329
- 

Return to bug 37050