From 748fdef1fbded624a786533e8f065b91a047b91c Mon Sep 17 00:00:00 2001 From: samogot Date: Sat, 30 Jul 2016 03:54:42 +0900 Subject: Online status in all modals (#3617) * add wrapper to modal avatar image which show small round indicator of online/away status of member in all modals * add offline indicator * the color of the status indicators follow the theme --- webapp/utils/utils.jsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'webapp/utils/utils.jsx') diff --git a/webapp/utils/utils.jsx b/webapp/utils/utils.jsx index 613995200..c4cee3235 100644 --- a/webapp/utils/utils.jsx +++ b/webapp/utils/utils.jsx @@ -575,12 +575,14 @@ export function applyTheme(theme) { changeCss('.app__body .sidebar--left .status .online--icon', 'fill:' + theme.onlineIndicator, 1); changeCss('.app__body .channel-header__info .status .online--icon', 'fill:' + theme.onlineIndicator, 1); changeCss('.app__body .navbar .status .online--icon', 'fill:' + theme.onlineIndicator, 1); + changeCss('.more-modal__list .more-modal__image-wrapper.status-online:after', 'background:' + theme.onlineIndicator, 1); } if (theme.awayIndicator) { changeCss('.app__body .sidebar--left .status .away--icon', 'fill:' + theme.awayIndicator, 1); changeCss('.app__body .channel-header__info .status .away--icon', 'fill:' + theme.awayIndicator, 1); changeCss('.app__body .navbar .status .away--icon', 'fill:' + theme.awayIndicator, 1); + changeCss('.more-modal__list .more-modal__image-wrapper.status-away:after', 'background:' + theme.awayIndicator, 1); } if (theme.mentionBj) { -- cgit v1.2.3-1-g7c22