From 5b423c13b594e5613ba8a2129ae5ed7c00d4bdac Mon Sep 17 00:00:00 2001 From: root Date: Thu, 14 Jun 2018 16:12:02 -0400 Subject: [PATCH] Unread badge background is always white --- .../channel_drawer/channels_list/channel_item/channel_item.js | 2 +- app/components/channel_drawer/channels_list/channels_list.js | 2 +- .../channels_list/switch_teams_button/switch_teams_button.js | 2 +- .../teams_list/teams_list_item/teams_list_item.js | 2 +- app/screens/channel/channel_nav_bar/channel_drawer_button.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/components/channel_drawer/channels_list/channel_item/channel_item.js b/app/components/channel_drawer/channels_list/channel_item/channel_item.js index 0143264de..5c80f6bd6 100644 --- a/app/components/channel_drawer/channels_list/channel_item/channel_item.js +++ b/app/components/channel_drawer/channels_list/channel_item/channel_item.js @@ -229,7 +229,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { color: theme.sidebarUnreadText, }, badge: { - backgroundColor: theme.mentionBj, + backgroundColor: theme.mentionBg, borderColor: theme.sidebarHeaderBg, borderRadius: 10, borderWidth: 1, diff --git a/app/components/channel_drawer/channels_list/channels_list.js b/app/components/channel_drawer/channels_list/channels_list.js index 4d34082fb..a31b78eaf 100644 --- a/app/components/channel_drawer/channels_list/channels_list.js +++ b/app/components/channel_drawer/channels_list/channels_list.js @@ -244,7 +244,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { lineHeight: 18, }, above: { - backgroundColor: theme.mentionBj, + backgroundColor: theme.mentionBg, top: 9, }, }; diff --git a/app/components/channel_drawer/channels_list/switch_teams_button/switch_teams_button.js b/app/components/channel_drawer/channels_list/switch_teams_button/switch_teams_button.js index aeabaa37a..04d525089 100644 --- a/app/components/channel_drawer/channels_list/switch_teams_button/switch_teams_button.js +++ b/app/components/channel_drawer/channels_list/switch_teams_button/switch_teams_button.js @@ -116,7 +116,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { fontSize: 14, }, badge: { - backgroundColor: theme.mentionBj, + backgroundColor: theme.mentionBg, borderColor: theme.sidebarHeaderBg, borderRadius: 10, borderWidth: 1, diff --git a/app/components/channel_drawer/teams_list/teams_list_item/teams_list_item.js b/app/components/channel_drawer/teams_list/teams_list_item/teams_list_item.js index a8df3e966..7fdae7e05 100644 --- a/app/components/channel_drawer/teams_list/teams_list_item/teams_list_item.js +++ b/app/components/channel_drawer/teams_list/teams_list_item/teams_list_item.js @@ -143,7 +143,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { fontSize: 20, }, badge: { - backgroundColor: theme.mentionBj, + backgroundColor: theme.mentionBg, borderColor: theme.sidebarHeaderBg, borderRadius: 10, borderWidth: 1, diff --git a/app/screens/channel/channel_nav_bar/channel_drawer_button.js b/app/screens/channel/channel_nav_bar/channel_drawer_button.js index ff9ddbf85..76ca78d13 100644 --- a/app/screens/channel/channel_nav_bar/channel_drawer_button.js +++ b/app/screens/channel/channel_nav_bar/channel_drawer_button.js @@ -155,7 +155,7 @@ const getStyleFromTheme = makeStyleSheetFromTheme((theme) => { paddingHorizontal: 10, }, badge: { - backgroundColor: theme.mentionBj, + backgroundColor: theme.mentionBg, borderColor: theme.sidebarHeaderBg, borderRadius: 10, borderWidth: 1,