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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss (-7 / +12 lines)
Lines 75-80 fieldset { Link Here
75
                .fg-label {
75
                .fg-label {
76
                    grid-column: 2 / 3;
76
                    grid-column: 2 / 3;
77
                    grid-row: 1 / 2;
77
                    grid-row: 1 / 2;
78
                    justify-self: left;
79
                    text-align: left;
78
                }
80
                }
79
81
80
                .fg-input,
82
                .fg-input,
Lines 191-204 fieldset { Link Here
191
                &.input-checkbox {
193
                &.input-checkbox {
192
                    grid-template-columns: 25% 1.5rem 65%;
194
                    grid-template-columns: 25% 1.5rem 65%;
193
195
194
                    .fg-label,
196
                    .fg-label {
195
                    .fg-input {
197
                        grid-column: 2 / 3;
196
                        grid-column: unset;
198
                        grid-row: 1 / 2;
199
                    }
200
201
                    .fg-input,
202
                    .fg-text {
203
                        grid-column: 1 / 1;
197
                    }
204
                    }
198
205
199
                    .hint {
206
                    .hint {
200
                        grid-column-end: unset;
207
                        grid-column: 2 / 3;
201
                        grid-column-start: unset;
202
                    }
208
                    }
203
                }
209
                }
204
210
Lines 235-242 fieldset { Link Here
235
        .hint {
241
        .hint {
236
            color: #666;
242
            color: #666;
237
            font-size: 95%;
243
            font-size: 95%;
238
            grid-column-end: 4;
244
            grid-column: 4 / 2;
239
            grid-column-start: 2;
240
            margin: .3rem 0;
245
            margin: .3rem 0;
241
        }
246
        }
242
    }
247
    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt (-3 / +2 lines)
Lines 371-377 Link Here
371
                        <input type="text" name="branchnotes" id="branchnotes" value="[% library.branchnotes | html %]" />
371
                        <input type="text" name="branchnotes" id="branchnotes" value="[% library.branchnotes | html %]" />
372
                    </div>
372
                    </div>
373
                </div>
373
                </div>
374
                <div class="fg-row">
374
                <div class="fg-row input-sm">
375
                    <div class="fg-label">
375
                    <div class="fg-label">
376
                        <label for="pickup_location">Pickup location: </label>
376
                        <label for="pickup_location">Pickup location: </label>
377
                    </div>
377
                    </div>
Lines 387-393 Link Here
387
                        </select>
387
                        </select>
388
                    </div>
388
                    </div>
389
                </div>
389
                </div>
390
                <div class="fg-row">
390
                <div class="fg-row input-sm">
391
                    <div class="fg-label">
391
                    <div class="fg-label">
392
                        <label for="public">Public: </label>
392
                        <label for="public">Public: </label>
393
                    </div>
393
                    </div>
394
- 

Return to bug 39780