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 2327-2335 Link Here
2327
            let selectFields = document.querySelectorAll('select[multiple]');
2327
            let selectFields = document.querySelectorAll('select[multiple]');
2328
            selectFields.forEach((selectField) => {
2328
            selectFields.forEach((selectField) => {
2329
                selectField.style.minWidth = '320px';
2329
                selectField.style.minWidth = '320px';
2330
                $(selectField).select2({
2330
                $(selectField).select2();
2331
                    closeOnSelect: false,
2332
                });
2333
            });
2331
            });
2334
2332
2335
        });
2333
        });
2336
- 

Return to bug 37050