diff --git a/skins/base/css/common.css b/skins/base/css/common.css index b4941e38e6..55b9a6db31 100644 --- a/skins/base/css/common.css +++ b/skins/base/css/common.css @@ -86,14 +86,16 @@ html { .mx_Dialog button { border: 0px; - width: 80px; height: 36px; - line-height: 36px; border-radius: 36px; font-weight: 400; font-size: 16px; color: #fff; background-color: #80cef4; + margin-left: 8px; + margin-right: 8px; + padding-left: 1em; + padding-right: 1em; } .mx_ErrorDialogTitle { diff --git a/skins/base/views/molecules/ChangeAvatar.js b/skins/base/views/molecules/ChangeAvatar.js index a374f0ff23..e70da3a703 100644 --- a/skins/base/views/molecules/ChangeAvatar.js +++ b/skins/base/views/molecules/ChangeAvatar.js @@ -43,11 +43,15 @@ module.exports = React.createClass({ case this.Phases.Error: return (
- -
+
+ +
+
Upload new: {this.state.errorText} +
+
diff --git a/skins/base/views/molecules/ChangePassword.js b/skins/base/views/molecules/ChangePassword.js index 969a43d8fd..2f92f9ab3f 100644 --- a/skins/base/views/molecules/ChangePassword.js +++ b/skins/base/views/molecules/ChangePassword.js @@ -51,11 +51,13 @@ module.exports = React.createClass({ case this.Phases.Error: return (
-
{this.state.errorString}
- - - -
+
+
{this.state.errorString}
+
+
+
+
+
@@ -63,13 +65,19 @@ module.exports = React.createClass({ ); case this.Phases.Uploading: return ( - +
+ +
); case this.Phases.Success: return (
- Success! - +
+ Success! +
+
+ +
) } diff --git a/skins/base/views/organisms/LogoutPrompt.js b/skins/base/views/organisms/LogoutPrompt.js index dc76032a9e..10ed07ed8e 100644 --- a/skins/base/views/organisms/LogoutPrompt.js +++ b/skins/base/views/organisms/LogoutPrompt.js @@ -26,10 +26,14 @@ module.exports = React.createClass({ render: function() { return ( -
- Sign out?
- - +
+
+ Sign out? +
+
+ + +
); }, diff --git a/skins/base/views/organisms/RoomView.js b/skins/base/views/organisms/RoomView.js index 1a4c1ecbfe..25841b9176 100644 --- a/skins/base/views/organisms/RoomView.js +++ b/skins/base/views/organisms/RoomView.js @@ -21,7 +21,6 @@ var React = require('react'); var MatrixClientPeg = require("../../../../src/MatrixClientPeg"); var ComponentBroker = require('../../../../src/ComponentBroker'); -var Modal = require("../../../../src/Modal"); var classNames = require("classnames"); var filesize = require('filesize'); var q = require('q');