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 3731-3748 input.renew { Link Here
3731
    }
3731
    }
3732
3732
3733
    #ill-batch-modal {
3733
    #ill-batch-modal {
3734
        .modal-footer {
3735
            display: flex;
3736
3737
            & > * {
3738
                flex: 1;
3739
            }
3740
3741
            #lhs {
3742
                text-align: left;
3743
            }
3744
        }
3745
3746
        #create-progress {
3734
        #create-progress {
3747
            margin-top: 17px;
3735
            margin-top: 17px;
3748
        }
3736
        }
Lines 3792-3801 input.renew { Link Here
3792
    }
3780
    }
3793
3781
3794
    #batch-form {
3782
    #batch-form {
3795
        legend {
3796
            margin-bottom: 2em;
3797
        }
3798
3799
        textarea {
3783
        textarea {
3800
            min-height: 100px;
3784
            min-height: 100px;
3801
            padding: 5px;
3785
            padding: 5px;
Lines 3803-3813 input.renew { Link Here
3803
            width: 100%;
3787
            width: 100%;
3804
        }
3788
        }
3805
3789
3806
        #new-batch-form {
3807
            display: flex;
3808
            gap: 20px;
3809
        }
3810
3811
        li#process-button {
3790
        li#process-button {
3812
            display: flex;
3791
            display: flex;
3813
            justify-content: flex-end;
3792
            justify-content: flex-end;
Lines 3829-3838 input.renew { Link Here
3829
        .batch-modal-actions {
3808
        .batch-modal-actions {
3830
            text-align: center;
3809
            text-align: center;
3831
        }
3810
        }
3832
3833
        fieldset {
3834
            border: 2px solid #B9D8D9;
3835
        }
3836
    }
3811
    }
3837
3812
3838
    #dataPreviewLabel {
3813
    #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