summaryrefslogtreecommitdiffstats
path: root/web/react/components/command_list.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-08-31 09:03:47 -0400
committerChristopher Speller <crspeller@gmail.com>2015-08-31 09:03:47 -0400
commit8867e2fe22056cf08364082ced2853b6268a0671 (patch)
tree33e538cb788141bbd0d2c64b1c3db2d4c8230b90 /web/react/components/command_list.jsx
parent3cdd0192dddd9a95bf62940851b14ae1165d1982 (diff)
parent2b55ffb026559862fabd15e02fc69ac0ecc9dd2f (diff)
downloadchat-8867e2fe22056cf08364082ced2853b6268a0671.tar.gz
chat-8867e2fe22056cf08364082ced2853b6268a0671.tar.bz2
chat-8867e2fe22056cf08364082ced2853b6268a0671.zip
Merge pull request #493 from asaadmahmoodspin/master
MM-1899 - Updating UI for commands in input box
Diffstat (limited to 'web/react/components/command_list.jsx')
-rw-r--r--web/react/components/command_list.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/react/components/command_list.jsx b/web/react/components/command_list.jsx
index 5efe98dc6..27264ff6e 100644
--- a/web/react/components/command_list.jsx
+++ b/web/react/components/command_list.jsx
@@ -48,15 +48,15 @@ module.exports = React.createClass({
if (this.state.suggestions[i].suggestion != this.state.cmd) {
suggestions.push(
<div key={i} className="command-name" onClick={this.handleClick.bind(this, i)}>
- <div className="pull-left"><strong>{ this.state.suggestions[i].suggestion }</strong></div>
- <div className="command-desc pull-right">{ this.state.suggestions[i].description }</div>
+ <div className="command__title"><strong>{ this.state.suggestions[i].suggestion }</strong></div>
+ <div className="command__desc">{ this.state.suggestions[i].description }</div>
</div>
);
}
}
return (
- <div ref="mentionlist" className="command-box" style={{height:(this.state.suggestions.length*37)+2}}>
+ <div ref="mentionlist" className="command-box" style={{height:(this.state.suggestions.length*56)+2}}>
{ suggestions }
</div>
);