summaryrefslogtreecommitdiffstats
path: root/web/react/utils/utils.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-10-07 08:43:24 -0400
committerChristopher Speller <crspeller@gmail.com>2015-10-07 08:43:24 -0400
commit4263c08c55f7bc4b18cadeaed44f9ed8126ba70e (patch)
treec25d1230ed6f75afd4b41b11ca22d9500e68debb /web/react/utils/utils.jsx
parentdfaef4bd7227391e21890c720f9668acb3a64c28 (diff)
parent698ca63d991f4246060223642116a78302a5af32 (diff)
downloadchat-4263c08c55f7bc4b18cadeaed44f9ed8126ba70e.tar.gz
chat-4263c08c55f7bc4b18cadeaed44f9ed8126ba70e.tar.bz2
chat-4263c08c55f7bc4b18cadeaed44f9ed8126ba70e.zip
Merge pull request #953 from asaadmahmoodspin/plt-522
PLT-522 - Adding option for mentionHighlightLink for themes
Diffstat (limited to 'web/react/utils/utils.jsx')
-rw-r--r--web/react/utils/utils.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index 8431e56bc..f79f3492f 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -531,6 +531,10 @@ export function applyTheme(theme) {
if (theme.mentionHighlightBg) {
changeCss('.mention-highlight, .search-highlight', 'background:' + theme.mentionHighlightBg, 1);
}
+
+ if (theme.mentionHighlightLink) {
+ changeCss('.mention-highlight .mention-link', 'color:' + theme.mentionHighlightLink, 1);
+ }
}
export function changeCss(className, classValue, classRepeat) {
// we need invisible container to store additional css definitions