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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-2 / +1 lines)
Lines 326-332 Link Here
326
                    [% END %]
326
                    [% END %]
327
                    [% IF Koha.Preference('OpacPasswordChange') && Koha.Preference('OpacResetPassword') %]
327
                    [% IF Koha.Preference('OpacPasswordChange') && Koha.Preference('OpacResetPassword') %]
328
                        <div id="forgotpassword-modal" class="forgotpassword">
328
                        <div id="forgotpassword-modal" class="forgotpassword">
329
                            <p><a href="/cgi-bin/koha/opac-password-recovery.pl">Forgot your password?</a></p>
329
                            <a href="/cgi-bin/koha/opac-password-recovery.pl">Forgot your password?</a>
330
                        </div>
330
                        </div>
331
                    [% END %]
331
                    [% END %]
332
                    [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]
332
                    [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]
Lines 338-344 Link Here
338
            </div>
338
            </div>
339
            <div class="modal-footer">
339
            <div class="modal-footer">
340
                <input type="submit" class="btn btn-primary" value="Log in" />
340
                <input type="submit" class="btn btn-primary" value="Log in" />
341
                <a href="#" data-dismiss="modal" aria-hidden="true" class="cancel">Cancel</a>
342
            </div>
341
            </div>
343
        </form> <!-- /#auth -->
342
        </form> <!-- /#auth -->
344
    </div>  <!-- /#modalAuth  -->
343
    </div>  <!-- /#modalAuth  -->
(-)a/koha-tmpl/opac-tmpl/bootstrap/less/opac.less (+53 lines)
Lines 2060-2065 button.closebtn{padding:0;cursor:pointer;background:transparent;border:0;-webkit Link Here
2060
    font-size: 13px;
2060
    font-size: 13px;
2061
}
2061
}
2062
2062
2063
.modal {
2064
    form {
2065
        margin: 0;
2066
    }
2067
}
2068
2069
#loginModal {
2070
    width: 400px;
2071
    margin-left: -200px;
2072
2073
    input {
2074
        display: block;
2075
        box-sizing: border-box;
2076
        font-size: 150%;
2077
        height: auto;
2078
        padding: .4em;
2079
        width: 100%;
2080
2081
        &[type='submit'] {
2082
            background: #006dcc none;
2083
            font-size: 100%;
2084
            padding: .5em;
2085
            transition: background-color 0.5s ease;
2086
2087
            &:hover {
2088
                background: #0088cc none;
2089
            }
2090
        }
2091
    }
2092
2093
    .closebtn {
2094
        color: #C00;
2095
        opacity: 1;
2096
2097
        &:hover {
2098
            opacity: .4;
2099
        }
2100
    }
2101
2102
    .modal-header,
2103
    .modal-body,
2104
    .modal-footer {
2105
        font-size: 120%;
2106
        padding: 1em 2em;
2107
    }
2108
}
2109
2110
.nologininstructions,
2111
.forgotpassword,
2112
.patronregistration {
2113
    padding-top: 1em;
2114
}
2115
2063
.span2 select {
2116
.span2 select {
2064
    width: 100%;
2117
    width: 100%;
2065
}
2118
}
(-)a/koha-tmpl/opac-tmpl/bootstrap/less/responsive.less (-1 / +4 lines)
Lines 389-394 Link Here
389
                border-radius: 7px 7px 0 0;
389
                border-radius: 7px 7px 0 0;
390
        border-bottom: 1px solid #D8D8D8;
390
        border-bottom: 1px solid #D8D8D8;
391
    }
391
    }
392
    #loginModal {
393
        margin: 0;
394
        width: auto;
395
    }
392
}
396
}
393
397
394
@media only screen and (max-width: 800px) {
398
@media only screen and (max-width: 800px) {
395
- 

Return to bug 21157