summaryrefslogtreecommitdiffstats
path: root/web/react
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-08-13 20:03:40 +0500
committerJoramWilander <jwawilander@gmail.com>2015-08-18 08:59:27 -0400
commit7e2da89590bcdf4081b18c8ce4e0b2b244f671de (patch)
tree3d897c252863b5309546b5f8145949d6ff312dfe /web/react
parent265cf7d9f4f5e0f467fea290dfcd0a8b779c5c47 (diff)
downloadchat-7e2da89590bcdf4081b18c8ce4e0b2b244f671de.tar.gz
chat-7e2da89590bcdf4081b18c8ce4e0b2b244f671de.tar.bz2
chat-7e2da89590bcdf4081b18c8ce4e0b2b244f671de.zip
MM-319 - Minor ui changes
Diffstat (limited to 'web/react')
-rw-r--r--web/react/components/post_body.jsx2
-rw-r--r--web/react/components/post_right.jsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/post_body.jsx b/web/react/components/post_body.jsx
index 77a8fd7b5..7abf38838 100644
--- a/web/react/components/post_body.jsx
+++ b/web/react/components/post_body.jsx
@@ -63,7 +63,7 @@ module.exports = React.createClass({
var loading;
if (post.state === Constants.POST_FAILED) {
postClass += " post-fail";
- loading = <a className="post-retry pull-right" href="#" onClick={this.props.retryPost}>Retry</a>;
+ loading = <a className="theme post-retry pull-right" href="#" onClick={this.props.retryPost}>Retry</a>;
} else if (post.state === Constants.POST_LOADING) {
postClass += " post-waiting";
loading = <img className="post-loading-gif pull-right" src="/static/images/load.gif"/>;
diff --git a/web/react/components/post_right.jsx b/web/react/components/post_right.jsx
index 364cbf1b3..decb5fc2d 100644
--- a/web/react/components/post_right.jsx
+++ b/web/react/components/post_right.jsx
@@ -191,7 +191,7 @@ CommentPost = React.createClass({
var postClass = '';
if (post.state === Constants.POST_FAILED) {
postClass += ' post-fail';
- loading = <a className='post-retry pull-right' href='#' onClick={this.retryComment}>Retry</a>;
+ loading = <a className='theme post-retry pull-right' href='#' onClick={this.retryComment}>Retry</a>;
} else if (post.state === Constants.POST_LOADING) {
postClass += ' post-waiting';
loading = <img className='post-loading-gif pull-right' src='/static/images/load.gif'/>;