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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/_responsive.scss (+5 lines)
Lines 424-429 Link Here
424
        border-bottom: 1px solid #D8D8D8;
424
        border-bottom: 1px solid #D8D8D8;
425
        border-radius: 7px 7px 0 0;
425
        border-radius: 7px 7px 0 0;
426
    }
426
    }
427
428
    #loginModal {
429
        margin: 0;
430
        width: auto;
431
    }
427
}
432
}
428
433
429
@media only screen and ( max-width: 800px ) {
434
@media only screen and ( max-width: 800px ) {
(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (+53 lines)
Lines 2377-2382 button.closebtn { Link Here
2377
    padding: 0;
2377
    padding: 0;
2378
}
2378
}
2379
2379
2380
.modal {
2381
    form {
2382
        margin: 0;
2383
    }
2384
}
2385
2386
#loginModal {
2387
    margin-left: -200px;
2388
    width: 400px;
2389
2390
    input {
2391
        box-sizing: border-box;
2392
        display: block;
2393
        font-size: 150%;
2394
        height: auto;
2395
        padding: .4em;
2396
        width: 100%;
2397
2398
        &[type='submit'] {
2399
            background: #006DCC none;
2400
            font-size: 100%;
2401
            padding: .5em;
2402
            transition: background-color .5s ease;
2403
2404
            &:hover {
2405
                background: #0088CC none;
2406
            }
2407
        }
2408
    }
2409
2410
    .closebtn {
2411
        color: #C00;
2412
        opacity: 1;
2413
2414
        &:hover {
2415
            opacity: .4;
2416
        }
2417
    }
2418
2419
    .modal-header,
2420
    .modal-body,
2421
    .modal-footer {
2422
        font-size: 120%;
2423
        padding: 1em 2em;
2424
    }
2425
}
2426
2427
.nologininstructions,
2428
.forgotpassword,
2429
.patronregistration {
2430
    padding-top: 1em;
2431
}
2432
2380
.btn-group {
2433
.btn-group {
2381
    label,
2434
    label,
2382
    select {
2435
    select {
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-3 / +1 lines)
Lines 327-333 Link Here
327
                    [% END %]
327
                    [% END %]
328
                    [% IF Koha.Preference('OpacPasswordChange') && Koha.Preference('OpacResetPassword') %]
328
                    [% IF Koha.Preference('OpacPasswordChange') && Koha.Preference('OpacResetPassword') %]
329
                        <div id="forgotpassword-modal" class="forgotpassword">
329
                        <div id="forgotpassword-modal" class="forgotpassword">
330
                            <p><a href="/cgi-bin/koha/opac-password-recovery.pl">Forgot your password?</a></p>
330
                            <a href="/cgi-bin/koha/opac-password-recovery.pl">Forgot your password?</a>
331
                        </div>
331
                        </div>
332
                    [% END %]
332
                    [% END %]
333
                    [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]
333
                    [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]
Lines 339-345 Link Here
339
            </div>
339
            </div>
340
            <div class="modal-footer">
340
            <div class="modal-footer">
341
                <input type="submit" class="btn btn-primary" value="Log in" />
341
                <input type="submit" class="btn btn-primary" value="Log in" />
342
                <a href="#" data-dismiss="modal" aria-hidden="true" class="cancel">Cancel</a>
343
            </div>
342
            </div>
344
        </form> <!-- /#auth -->
343
        </form> <!-- /#auth -->
345
    </div>  <!-- /#modalAuth  -->
344
    </div>  <!-- /#modalAuth  -->
346
- 

Return to bug 21157