Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Weblate 2017-06-18 23:54:13 +00:00
commit 7cbfa228ee
2 changed files with 12 additions and 3 deletions

View file

@ -47,6 +47,10 @@ module.exports = React.createClass({
dis.dispatch({ action: 'start_login' });
},
onRegisterClick: function() {
dis.dispatch({ action: 'start_registration' });
},
render: function() {
var TintableSvg = sdk.getComponent('elements.TintableSvg');
@ -71,6 +75,9 @@ module.exports = React.createClass({
<AccessibleButton className="mx_LoginBox_loginButton" element="button" onClick={this.onLoginClick}>
{ _t("Login") }
</AccessibleButton>
<AccessibleButton className="mx_LoginBox_registerButton" element="button" onClick={this.onRegisterClick}>
{ _t("Register") }
</AccessibleButton>
</div>
);
}

View file

@ -19,13 +19,15 @@ limitations under the License.
width: 100%;
}
.mx_LoginBox_loginButton {
.mx_LoginBox_loginButton,
.mx_LoginBox_registerButton {
margin-top: -8px;
height: 40px;
border: 0px;
border-radius: 40px;
padding-left: 1em;
padding-right: 1em;
margin-left: 4px;
margin-right: 4px;
width: 80px;
background-color: $accent-color;
color: $primary-bg-color;