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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-3 / +3 lines)
Lines 1820-1826 nav { Link Here
1820
		padding: 7px;
1820
		padding: 7px;
1821
	}
1821
	}
1822
1822
1823
	#external_login_button {
1823
	#shibboleth_login_button {
1824
		border: 1px solid #dbdbdb;
1824
		border: 1px solid #dbdbdb;
1825
		padding: 2px 10px 2px 10px;
1825
		padding: 2px 10px 2px 10px;
1826
		color: #000;
1826
		color: #000;
Lines 1836-1847 nav { Link Here
1836
		text-decoration: none;
1836
		text-decoration: none;
1837
	}
1837
	}
1838
1838
1839
	#external_login_button:hover {
1839
	#shibboleth_login_button:hover {
1840
		text-decoration: none;
1840
		text-decoration: none;
1841
		background-color: #f0f0f0;
1841
		background-color: #f0f0f0;
1842
	}
1842
	}
1843
1843
1844
	#external_login_name {
1844
	.shibboleth_login_name {
1845
		padding-left: 1em;
1845
		padding-left: 1em;
1846
	}
1846
	}
1847
1847
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-5 / +6 lines)
Lines 399-411 Link Here
399
                            [% IF ( invalidShibLogin ) %]
399
                            [% IF ( invalidShibLogin ) %]
400
                                <!-- This is what is displayed if shibboleth login has failed to match a koha user -->
400
                                <!-- This is what is displayed if shibboleth login has failed to match a koha user -->
401
                                    <div class="alert alert-info">
401
                                    <div class="alert alert-info">
402
                                        <p>Sorry, your Shibboleth identity does not match a valid library identity. If you have a local login, you may use that below.</p>
402
                                        <p>Sorry, your <span class="shibboleth_login_name">Shibboleth</span> identity does not match a valid library identity. If you have a local login, you may use that below.</p>
403
                                    </div>
403
                                    </div>
404
                            [% ELSE %]
404
                            [% ELSE %]
405
                                <h3>Sign in using:</h3>
405
                                <h3>Sign in using:</h3>
406
                                <a href="[% shibbolethLoginUrl | $raw %]">
406
                                <div id="shibboleth_login_button">
407
                                    <div id="external_login_button"><i id="external_login_icon" class="fa fa-user-circle-o" aria-hidden="true"></i><span id="external_login_name"> Shibboleth</span></div>
407
                                    <a href="[% shibbolethLoginUrl | $raw %]">
408
                                </a>
408
                                        <i id="shibboleth_login_icon" class="fa fa-user-circle-o" aria-hidden="true"></i><span class="shibboleth_login_name">Shibboleth</span>
409
                                    </a>
410
                                </div>
409
                            [% END %]
411
                            [% END %]
410
                        </div>
412
                        </div>
411
                    [% END %]
413
                    [% END %]
412
- 

Return to bug 25405