summaryrefslogtreecommitdiffstats
path: root/webapp/components/notify_counts.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/notify_counts.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/notify_counts.jsx')
-rw-r--r--webapp/components/notify_counts.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/components/notify_counts.jsx b/webapp/components/notify_counts.jsx
index f05ecbf12..6fcb3acdf 100644
--- a/webapp/components/notify_counts.jsx
+++ b/webapp/components/notify_counts.jsx
@@ -37,9 +37,9 @@ export default class NotifyCounts extends React.Component {
}
render() {
if (this.state.mentionCount) {
- return <span className='badge badge-notify'>{this.state.mentionCount}</span>;
+ return <span className='mention-badge badge-notify'>{this.state.mentionCount}</span>;
} else if (this.state.messageCount) {
- return <span className='badge badge-notify'>{'•'}</span>;
+ return <span className='mention-badge badge-notify'>{'•'}</span>;
}
return null;
}