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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-25 lines)
Lines 3718-3735 input.renew { Link Here
3718
    }
3718
    }
3719
3719
3720
    #ill-batch-modal {
3720
    #ill-batch-modal {
3721
        .modal-footer {
3722
            display: flex;
3723
3724
            & > * {
3725
                flex: 1;
3726
            }
3727
3728
            #lhs {
3729
                text-align: left;
3730
            }
3731
        }
3732
3733
        #create-progress {
3721
        #create-progress {
3734
            margin-top: 17px;
3722
            margin-top: 17px;
3735
        }
3723
        }
Lines 3779-3788 input.renew { Link Here
3779
    }
3767
    }
3780
3768
3781
    #batch-form {
3769
    #batch-form {
3782
        legend {
3783
            margin-bottom: 2em;
3784
        }
3785
3786
        textarea {
3770
        textarea {
3787
            min-height: 100px;
3771
            min-height: 100px;
3788
            padding: 5px;
3772
            padding: 5px;
Lines 3790-3800 input.renew { Link Here
3790
            width: 100%;
3774
            width: 100%;
3791
        }
3775
        }
3792
3776
3793
        #new-batch-form {
3794
            display: flex;
3795
            gap: 20px;
3796
        }
3797
3798
        li#process-button {
3777
        li#process-button {
3799
            display: flex;
3778
            display: flex;
3800
            justify-content: flex-end;
3779
            justify-content: flex-end;
Lines 3816-3825 input.renew { Link Here
3816
        .batch-modal-actions {
3795
        .batch-modal-actions {
3817
            text-align: center;
3796
            text-align: center;
3818
        }
3797
        }
3819
3820
        fieldset {
3821
            border: 2px solid #B9D8D9;
3822
        }
3823
    }
3798
    }
3824
3799
3825
    #dataPreviewLabel {
3800
    #dataPreviewLabel {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/ill-batch-modal.inc (-10 / +5 lines)
Lines 49-60 Link Here
49
                                    <textarea id="identifiers_input" placeholder="Enter identifiers, one per line"></textarea>
49
                                    <textarea id="identifiers_input" placeholder="Enter identifiers, one per line"></textarea>
50
                                </li>
50
                                </li>
51
                                <li id="process-button">
51
                                <li id="process-button">
52
                                    <button id="process_button" disabled aria-disabled="true" type="button">Process identifiers</button>
52
                                    <button id="process_button" class="btn btn-primary" disabled aria-disabled="true" type="button">Process identifiers</button>
53
                                </li>
53
                                </li>
54
                            </ol>
54
                            </ol>
55
                        </fieldset>
55
                        </fieldset>
56
                    </form>
56
                    </form>
57
                    <div id="create-progress" class="alert alert-info" role="alert" style="display:none">
57
                    <div id="create-progress" role="alert" style="display:none">
58
                        <span id="progress-label"><strong></strong></span> - Items processed: <span id="processed_count">0</span> out of <span id="processed_total">0</span>. Items failed: <span id="processed_failed">0</span>.
58
                        <span id="progress-label"><strong></strong></span> - Items processed: <span id="processed_count">0</span> out of <span id="processed_total">0</span>. Items failed: <span id="processed_failed">0</span>.
59
                        <div class="progress">
59
                        <div class="progress">
60
                            <div id="processed_progress_bar" class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="min-width: 2em;"> 0% </div>
60
                            <div id="processed_progress_bar" class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="min-width: 2em;"> 0% </div>
Lines 82-94 Link Here
82
                </div>
82
                </div>
83
            </div>
83
            </div>
84
            <div class="modal-footer">
84
            <div class="modal-footer">
85
                <div id="lhs">
85
                <button id="button_create_batch" class="btn btn-primary" aria-hidden="true" disabled>Continue</button>
86
                    <button class="btn btn-default" data-bs-dismiss="modal" aria-hidden="false">Cancel</button>
86
                <button id="button_finish" disabled type="button" class="btn btn-primary" aria-hidden="true">Finish and view batch</button>
87
                </div>
87
                <button id="button_cancel_batch" class="btn btn-default" data-bs-dismiss="modal" aria-hidden="false">Cancel</button>
88
                <div id="rhs">
89
                    <button id="button_create_batch" class="btn btn-default" aria-hidden="true" disabled>Continue</button>
90
                    <button id="button_finish" disabled type="button" class="btn btn-default" aria-hidden="true">Finish and view batch</button>
91
                </div>
92
            </div>
88
            </div>
93
        </div>
89
        </div>
94
    </div>
90
    </div>
95
- 

Return to bug 39179