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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/installer.scss (+20 lines)
Lines 192-197 fieldset { Link Here
192
                margin-left: 1em;
192
                margin-left: 1em;
193
                width: auto;
193
                width: auto;
194
            }
194
            }
195
196
            &.form-label {
197
                display: block;
198
                float: none;
199
                margin: 0;
200
                text-align: left;
201
                width: auto;
202
            }
195
        }
203
        }
196
204
197
        span.label {
205
        span.label {
Lines 237-242 fieldset { Link Here
237
            margin-right: 4em;
245
            margin-right: 4em;
238
            margin-top: .5em;
246
            margin-top: .5em;
239
        }
247
        }
248
249
        .form-control {
250
            width: auto;
251
        }
252
253
        .enrolmentperioddate {
254
            float: left;
255
256
            + .hint {
257
                margin-left: 0;
258
            }
259
        }
240
    }
260
    }
241
}
261
}
242
262
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt (-20 / +16 lines)
Lines 115-139 Link Here
115
                            </div>
115
                            </div>
116
                        </li>
116
                        </li>
117
                        <li>
117
                        <li>
118
                            <span class="label">Enrolment period: </span>
118
                            <span class="label">Enrolment period (choose one): </span>
119
                            <fieldset class="rows">
119
                            <div style="margin-left: 9rem;">
120
                                <ol>
120
                                <div class="mb-3">
121
                                    <li> <span class="label"></span><strong>Choose one</strong> </li>
121
                                    <label class="form-label" for="enrolmentperiod">In months</label>
122
                                    <li>
122
                                    [% IF category.enrolmentperiod %]
123
                                        <label for="enrolmentperiod">In months: </label>
123
                                        <input type="text" inputmode="numeric" pattern="[0-9]*" class="enrolmentperiod" name="enrolmentperiod" id="enrolmentperiod" size="3" value="[% category.enrolmentperiod | html %]" />
124
                                        [% IF category.enrolmentperiod %]
124
                                    [% ELSE %]
125
                                            <input type="text" inputmode="numeric" pattern="[0-9]*" class="enrolmentperiod" name="enrolmentperiod" id="enrolmentperiod" size="3" value="[% category.enrolmentperiod | html %]" />
125
                                        <input type="text" inputmode="numeric" pattern="[0-9]*" class="enrolmentperiod" name="enrolmentperiod" id="enrolmentperiod" size="3" value="" />
126
                                        [% ELSE %]
126
                                    [% END %]
127
                                            <input type="text" inputmode="numeric" pattern="[0-9]*" class="enrolmentperiod" name="enrolmentperiod" id="enrolmentperiod" size="3" value="" />
127
                                </div>
128
                                        [% END %]
128
                                <div class="mb-3">
129
                                    </li>
129
                                    <label class="form-label" for="enrolmentperioddate">Until date</label>
130
                                    <li>
130
                                    <input type="text" class="enrolmentperioddate" name="enrolmentperioddate" id="enrolmentperioddate" value="[% category.enrolmentperioddate | html %]" />
131
                                        <label for="enrolmentperioddate">Until date: </label>
131
                                    <div class="hint"> [% INCLUDE 'date-format.inc' dateformat = Koha.Preference('dateformat') %] </div>
132
                                        <input type="text" class="enrolmentperioddate" name="enrolmentperioddate" id="enrolmentperioddate" value="[% category.enrolmentperioddate | html %]" />
132
                                </div>
133
                                        <div class="hint">[% INCLUDE 'date-format.inc' dateformat = Koha.Preference('dateformat') %]</div>
133
                            </div>
134
                                    </li>
135
                                </ol>
136
                            </fieldset>
137
                        </li>
134
                        </li>
138
                    </ol>
135
                    </ol>
139
136
140
- 

Return to bug 40557