summaryrefslogtreecommitdiffstats
path: root/webapp/utils
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2017-05-22 23:17:29 +0500
committerCorey Hulen <corey@hulen.com>2017-05-22 11:17:29 -0700
commit52f73c30cafd6afaa11361b05972e25ebc223a81 (patch)
tree35885388a47ddca9b71c3914245be1d9cfc79c79 /webapp/utils
parent9eb9c115de3a70e26ebacc528a6e50e21e06e9c3 (diff)
downloadchat-52f73c30cafd6afaa11361b05972e25ebc223a81.tar.gz
chat-52f73c30cafd6afaa11361b05972e25ebc223a81.tar.bz2
chat-52f73c30cafd6afaa11361b05972e25ebc223a81.zip
PLT-6651 - Overlay issue modal (#6473)
* PLT-6651 - Overlay issue modal * Fixing mentions badge
Diffstat (limited to 'webapp/utils')
-rw-r--r--webapp/utils/utils.jsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/webapp/utils/utils.jsx b/webapp/utils/utils.jsx
index b860585cb..da0f1fa67 100644
--- a/webapp/utils/utils.jsx
+++ b/webapp/utils/utils.jsx
@@ -558,14 +558,14 @@ export function applyTheme(theme) {
if (theme.mentionBj) {
changeCss('.sidebar--left .nav-pills__unread-indicator, .app__body .new-messages__button div', 'background:' + theme.mentionBj);
- changeCss('.app__body .sidebar--left .mention-badge', 'background:' + theme.mentionBj);
- changeCss('.multi-teams .team-sidebar .mention-badge', 'background:' + theme.mentionBj);
+ changeCss('.app__body .sidebar--left .badge', 'background:' + theme.mentionBj);
+ changeCss('.multi-teams .team-sidebar .badge', 'background:' + theme.mentionBj);
}
if (theme.mentionColor) {
changeCss('.app__body .sidebar--left .nav-pills__unread-indicator, .app__body .new-messages__button div', 'color:' + theme.mentionColor);
- changeCss('.app__body .sidebar--left .mention-badge', 'color:' + theme.mentionColor);
- changeCss('.app__body .multi-teams .team-sidebar .mention-badge', 'color:' + theme.mentionColor);
+ changeCss('.app__body .sidebar--left .badge', 'color:' + theme.mentionColor);
+ changeCss('.app__body .multi-teams .team-sidebar .badge', 'color:' + theme.mentionColor);
}
if (theme.centerChannelBg) {