mirror of https://github.com/vector-im/riot-web
Style SSO login like a button
parent
306380d647
commit
b1f698586e
|
@ -45,6 +45,7 @@ limitations under the License.
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-top: 35px;
|
margin-top: 35px;
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_Login_submit:hover {
|
.mx_Login_submit:hover {
|
||||||
|
@ -65,10 +66,11 @@ limitations under the License.
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_Login_sso_link {
|
.mx_AuthBody a.mx_Login_sso_link:link,
|
||||||
display: block;
|
.mx_AuthBody a.mx_Login_sso_link:hover,
|
||||||
|
.mx_AuthBody a.mx_Login_sso_link:visited {
|
||||||
|
color: $button-primary-fg-color;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_Login_loader {
|
.mx_Login_loader {
|
||||||
|
|
|
@ -590,7 +590,7 @@ module.exports = React.createClass({
|
||||||
// user's browser, let them log into their SSO provider, then redirect their browser
|
// user's browser, let them log into their SSO provider, then redirect their browser
|
||||||
// to vector://vector which, of course, will not work.
|
// to vector://vector which, of course, will not work.
|
||||||
return (
|
return (
|
||||||
<a href={url} className="mx_Login_sso_link">{ _t('Sign in with single sign-on') }</a>
|
<a href={url} className="mx_Login_sso_link mx_Login_submit">{ _t('Sign in with single sign-on') }</a>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue