Set Sidebar channel item display name opacity as 0.6 (same as webapp) (#3364)

This commit is contained in:
Mattermost Build 2019-10-02 20:34:58 +02:00 committed by Elias Nahum
parent e9e1dc0541
commit 3eb8d3857b
2 changed files with 9 additions and 9 deletions

View file

@ -82,7 +82,7 @@ exports[`ChannelItem should match snapshot 1`] = `
Array [
Object {
"alignSelf": "center",
"color": "rgba(255,255,255,0.88)",
"color": "rgba(255,255,255,0.6)",
"flex": 1,
"fontFamily": "Open Sans",
"fontSize": 16,
@ -197,7 +197,7 @@ exports[`ChannelItem should match snapshot for current user i.e currentUser (you
Array [
Object {
"alignSelf": "center",
"color": "rgba(255,255,255,0.88)",
"color": "rgba(255,255,255,0.6)",
"flex": 1,
"fontFamily": "Open Sans",
"fontSize": 16,
@ -311,7 +311,7 @@ exports[`ChannelItem should match snapshot for current user i.e currentUser (you
Array [
Object {
"alignSelf": "center",
"color": "rgba(255,255,255,0.88)",
"color": "rgba(255,255,255,0.6)",
"flex": 1,
"fontFamily": "Open Sans",
"fontSize": 16,
@ -425,7 +425,7 @@ exports[`ChannelItem should match snapshot for deactivated user and is currentCh
Array [
Object {
"alignSelf": "center",
"color": "rgba(255,255,255,0.88)",
"color": "rgba(255,255,255,0.6)",
"flex": 1,
"fontFamily": "Open Sans",
"fontSize": 16,
@ -528,7 +528,7 @@ exports[`ChannelItem should match snapshot for deactivated user and is searchRes
Array [
Object {
"alignSelf": "center",
"color": "rgba(255,255,255,0.88)",
"color": "rgba(255,255,255,0.6)",
"flex": 1,
"fontFamily": "Open Sans",
"fontSize": 16,
@ -632,7 +632,7 @@ exports[`ChannelItem should match snapshot for deactivated user and not searchRe
Array [
Object {
"alignSelf": "center",
"color": "rgba(255,255,255,0.88)",
"color": "rgba(255,255,255,0.6)",
"flex": 1,
"fontFamily": "Open Sans",
"fontSize": 16,
@ -740,7 +740,7 @@ exports[`ChannelItem should match snapshot with draft 1`] = `
Array [
Object {
"alignSelf": "center",
"color": "rgba(255,255,255,0.88)",
"color": "rgba(255,255,255,0.6)",
"flex": 1,
"fontFamily": "Open Sans",
"fontSize": 16,
@ -846,7 +846,7 @@ exports[`ChannelItem should match snapshot with mentions and muted 1`] = `
Array [
Object {
"alignSelf": "center",
"color": "rgba(255,255,255,0.88)",
"color": "rgba(255,255,255,0.6)",
"flex": 1,
"fontFamily": "Open Sans",
"fontSize": 16,

View file

@ -241,7 +241,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => {
paddingLeft: 11,
},
text: {
color: changeOpacity(theme.sidebarText, 0.88),
color: changeOpacity(theme.sidebarText, 0.6),
fontSize: 16,
lineHeight: 24,
paddingRight: 10,