summaryrefslogtreecommitdiffstats
path: root/webapp/utils/utils.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmoodspin@users.noreply.github.com>2016-06-03 16:58:23 +0500
committerJoram Wilander <jwawilander@gmail.com>2016-06-03 07:58:23 -0400
commit7b99ac0a91720a161a651f92edf3a572f46f2fde (patch)
tree0232996bdb1785791a335b3e34f4f037e74a5bcd /webapp/utils/utils.jsx
parent0e677f35bbcd048facdc78d0e959fa2441975065 (diff)
downloadchat-7b99ac0a91720a161a651f92edf3a572f46f2fde.tar.gz
chat-7b99ac0a91720a161a651f92edf3a572f46f2fde.tar.bz2
chat-7b99ac0a91720a161a651f92edf3a572f46f2fde.zip
PLT-3177 - Fixing ordering for custom themes (#3226)
Fix for bot tag and webhook attachments Adding theme styling for webhooks Removing embed styling Improving margins on compcat view for line breaks
Diffstat (limited to 'webapp/utils/utils.jsx')
-rw-r--r--webapp/utils/utils.jsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/webapp/utils/utils.jsx b/webapp/utils/utils.jsx
index 84c2ed4ce..9e01594cf 100644
--- a/webapp/utils/utils.jsx
+++ b/webapp/utils/utils.jsx
@@ -718,6 +718,7 @@ export function applyTheme(theme) {
if (theme.linkColor) {
changeCss('.app__body a, .app__body a:focus, .app__body a:hover, .app__body .btn, .app__body .btn:focus, .app__body .btn:hover', 'color:' + theme.linkColor, 1);
+ changeCss('.app__body .attachment .attachment__container', 'border-left-color:' + changeOpacity(theme.linkColor, 0.5), 1);
changeCss('.app__body .post .comment-icon__container, .app__body .post .post__reply', 'fill:' + theme.linkColor, 1);
}