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 3713-3730 input.renew { Link Here
3713
    }
3713
    }
3714
3714
3715
    #ill-batch-modal {
3715
    #ill-batch-modal {
3716
        .modal-footer {
3717
            display: flex;
3718
3719
            & > * {
3720
                flex: 1;
3721
            }
3722
3723
            #lhs {
3724
                text-align: left;
3725
            }
3726
        }
3727
3728
        #create-progress {
3716
        #create-progress {
3729
            margin-top: 17px;
3717
            margin-top: 17px;
3730
        }
3718
        }
Lines 3774-3783 input.renew { Link Here
3774
    }
3762
    }
3775
3763
3776
    #batch-form {
3764
    #batch-form {
3777
        legend {
3778
            margin-bottom: 2em;
3779
        }
3780
3781
        textarea {
3765
        textarea {
3782
            min-height: 100px;
3766
            min-height: 100px;
3783
            padding: 5px;
3767
            padding: 5px;
Lines 3785-3795 input.renew { Link Here
3785
            width: 100%;
3769
            width: 100%;
3786
        }
3770
        }
3787
3771
3788
        #new-batch-form {
3789
            display: flex;
3790
            gap: 20px;
3791
        }
3792
3793
        li#process-button {
3772
        li#process-button {
3794
            display: flex;
3773
            display: flex;
3795
            justify-content: flex-end;
3774
            justify-content: flex-end;
Lines 3811-3820 input.renew { Link Here
3811
        .batch-modal-actions {
3790
        .batch-modal-actions {
3812
            text-align: center;
3791
            text-align: center;
3813
        }
3792
        }
3814
3815
        fieldset {
3816
            border: 2px solid #B9D8D9;
3817
        }
3818
    }
3793
    }
3819
3794
3820
    #dataPreviewLabel {
3795
    #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