summaryrefslogtreecommitdiffstats
path: root/webapp/components
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2017-08-31 01:19:15 +0500
committerHarrison Healey <harrisonmhealey@gmail.com>2017-08-30 16:19:15 -0400
commit9e3b74b4ef08fd169d1d8243a93d09bcc28d66fb (patch)
tree37256db3871c168b0eaae51d2ac6fa30e29ee971 /webapp/components
parent4660127fd035dfb7a4d002919ad1cdc246747597 (diff)
downloadchat-9e3b74b4ef08fd169d1d8243a93d09bcc28d66fb.tar.gz
chat-9e3b74b4ef08fd169d1d8243a93d09bcc28d66fb.tar.bz2
chat-9e3b74b4ef08fd169d1d8243a93d09bcc28d66fb.zip
Minor bug fixes (#7305)
* PLT-7063 - Changing search bar bg and color * PLT-7064 - Adjusting info popover styling * PLT-7124 - Fixing sidebar with webrtc call ongoing * PLT-7400 - Fixing semi transparent options list * PLT-7491 - Showing send button on mobile
Diffstat (limited to 'webapp/components')
-rw-r--r--webapp/components/create_post.jsx12
-rw-r--r--webapp/components/webrtc/webrtc_controller.jsx2
2 files changed, 7 insertions, 7 deletions
diff --git a/webapp/components/create_post.jsx b/webapp/components/create_post.jsx
index 1a7771b9b..997ba8065 100644
--- a/webapp/components/create_post.jsx
+++ b/webapp/components/create_post.jsx
@@ -772,14 +772,14 @@ export default class CreatePost extends React.Component {
>
{fileUpload}
{emojiPicker}
+ <a
+ className={sendButtonClass}
+ onClick={this.handleSubmit}
+ >
+ <i className='fa fa-paper-plane'/>
+ </a>
</span>
</div>
- <a
- className={sendButtonClass}
- onClick={this.handleSubmit}
- >
- <i className='fa fa-paper-plane'/>
- </a>
{tutorialTip}
</div>
<div className={postFooterClassName}>
diff --git a/webapp/components/webrtc/webrtc_controller.jsx b/webapp/components/webrtc/webrtc_controller.jsx
index 9a6dcb94e..576dc7b58 100644
--- a/webapp/components/webrtc/webrtc_controller.jsx
+++ b/webapp/components/webrtc/webrtc_controller.jsx
@@ -1186,7 +1186,7 @@ export default class WebrtcController extends React.Component {
return (
<div className='post-right__container'>
- <div className='search-bar__container sidebar--right__search-header'>{searchForm}</div>
+ <div className='search-bar__container channel-header alt'>{searchForm}</div>
<div className='sidebar-right__body'>
<WebrtcHeader
username={Utils.displayUsername(this.props.userId)}