summaryrefslogtreecommitdiffstats
path: root/webapp/components/navbar.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2016-10-27 18:10:05 +0500
committerJoram Wilander <jwawilander@gmail.com>2016-10-27 09:10:05 -0400
commit14ce471311fee2830be3cbd3a90179015f513719 (patch)
tree26db51b68ca27b6ba471cbd2b9286d0c70b5b6d5 /webapp/components/navbar.jsx
parent4dca84c8b4e38dd13522ddaea5843b276dd77946 (diff)
downloadchat-14ce471311fee2830be3cbd3a90179015f513719.tar.gz
chat-14ce471311fee2830be3cbd3a90179015f513719.tar.bz2
chat-14ce471311fee2830be3cbd3a90179015f513719.zip
Updating shift UI changes (#4326)
* Updating shift UI changes * Adding border to last account settings item * Fixing modals
Diffstat (limited to 'webapp/components/navbar.jsx')
-rw-r--r--webapp/components/navbar.jsx14
1 files changed, 13 insertions, 1 deletions
diff --git a/webapp/components/navbar.jsx b/webapp/components/navbar.jsx
index 18ea84376..9a4475cc2 100644
--- a/webapp/components/navbar.jsx
+++ b/webapp/components/navbar.jsx
@@ -485,7 +485,7 @@ export default class Navbar extends React.Component {
className='description'
rootClose={true}
>
- <div className='description info-popover'/>
+ <div className='pull-right description info-popover'/>
</OverlayTrigger>
<a
href='#'
@@ -635,6 +635,12 @@ export default class Navbar extends React.Component {
message={channel.header}
options={{singleline: true, mentionHighlight: false}}
/>
+ <div
+ className='close__icon visible-xs-block'
+ onClick={() => this.refs.headerOverlay.hide()}
+ >
+ {'×'}
+ </div>
</Popover>
);
@@ -688,6 +694,12 @@ export default class Navbar extends React.Component {
}}
/>
</div>
+ <div
+ className='close__icon visible-xs-block'
+ onClick={() => this.refs.headerOverlay.hide()}
+ >
+ {'×'}
+ </div>
</Popover>
);
}