summaryrefslogtreecommitdiffstats
path: root/webapp/components/sidebar.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2017-05-18 17:57:19 +0500
committerJoram Wilander <jwawilander@gmail.com>2017-05-18 08:57:19 -0400
commitfc58174747cd25eded07c30f5f122d4f8122e7e5 (patch)
treeadf214b31013afacb3a6dba145389466d1519fee /webapp/components/sidebar.jsx
parent2df5f65f55456a29f6fe75ea533051b99e271756 (diff)
downloadchat-fc58174747cd25eded07c30f5f122d4f8122e7e5.tar.gz
chat-fc58174747cd25eded07c30f5f122d4f8122e7e5.tar.bz2
chat-fc58174747cd25eded07c30f5f122d4f8122e7e5.zip
PLT-6614 - Mentions badge styling and dropdown icon style (#6426)
* Mentions badge styling and dropdown icon style * PLT-6134 - Fixing emoji picker border in RHS
Diffstat (limited to 'webapp/components/sidebar.jsx')
-rw-r--r--webapp/components/sidebar.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/sidebar.jsx b/webapp/components/sidebar.jsx
index f8b3616f3..a0e69c52a 100644
--- a/webapp/components/sidebar.jsx
+++ b/webapp/components/sidebar.jsx
@@ -517,7 +517,7 @@ export default class Sidebar extends React.Component {
var badge = null;
if (channelMember) {
if (unreadCount.mentions) {
- badge = <span className='badge pull-right small'>{unreadCount.mentions}</span>;
+ badge = <span className='mention-badge pull-right small'>{unreadCount.mentions}</span>;
this.badgesActive = true;
}
} else if (this.state.loadingDMChannel === index && channel.type === Constants.DM_CHANNEL) {