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 2310-2318 Link Here
2310
            let selectFields = document.querySelectorAll('select[multiple]');
2310
            let selectFields = document.querySelectorAll('select[multiple]');
2311
            selectFields.forEach((selectField) => {
2311
            selectFields.forEach((selectField) => {
2312
                selectField.style.minWidth = '320px';
2312
                selectField.style.minWidth = '320px';
2313
                $(selectField).select2({
2313
                $(selectField).select2();
2314
                    closeOnSelect: false,
2315
                });
2316
            });
2314
            });
2317
2315
2318
        });
2316
        });
2319
- 

Return to bug 37050