diff --git a/sass/layout/_headers.scss b/sass/layout/_headers.scss index 3fe75c23a792..798fb6f9b911 100644 --- a/sass/layout/_headers.scss +++ b/sass/layout/_headers.scss @@ -739,6 +739,11 @@ } } } + .channel-header__info { + .header-dropdown__icon { + color: rgba(var(--center-channel-color-rgb),0.8) + } + } } diff --git a/utils/utils.jsx b/utils/utils.jsx index 150910e7df19..fce08175a22b 100644 --- a/utils/utils.jsx +++ b/utils/utils.jsx @@ -686,7 +686,6 @@ export function applyTheme(theme) { changeCss('.app__body .shortcut-key, .app__body .post__body hr, .app__body .loading-screen .loading__content .round, .app__body .tutorial__circles .circle', 'background:' + theme.centerChannelColor); changeCss('.app__body .channel-header .heading', 'color:' + theme.centerChannelColor); changeCss('.app__body .markdown__table tbody tr:nth-child(2n)', 'background:' + changeOpacity(theme.centerChannelColor, 0.07)); - changeCss('.app__body .channel-header__info .header-dropdown__icon', 'color:' + changeOpacity(theme.centerChannelColor, 0.8)); changeCss('.app__body .post-create__container .post-create-body .send-button.disabled i', 'color:' + changeOpacity(theme.centerChannelColor, 0.4)); changeCss('.app__body .channel-header .pinned-posts-button svg', 'fill:' + changeOpacity(theme.centerChannelColor, 0.6)); changeCss('.app__body .channel-header .channel-header_plugin-dropdown svg', 'fill:' + changeOpacity(theme.centerChannelColor, 0.6));