summaryrefslogtreecommitdiffstats
path: root/web/react/utils/utils.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-10-15 11:42:01 -0700
committerCorey Hulen <corey@hulen.com>2015-10-15 11:42:01 -0700
commit5f1734a3c294d1a6ca453a0b3dbb7f67f97cf4a5 (patch)
treeda20ee242192263e0e0b2077e296876a8e250091 /web/react/utils/utils.jsx
parentf09685a37398da7808117b960321a14ab7989da7 (diff)
parent3d16d64c0ba2233b680e4ded01784a892c63e925 (diff)
downloadchat-5f1734a3c294d1a6ca453a0b3dbb7f67f97cf4a5.tar.gz
chat-5f1734a3c294d1a6ca453a0b3dbb7f67f97cf4a5.tar.bz2
chat-5f1734a3c294d1a6ca453a0b3dbb7f67f97cf4a5.zip
Merge pull request #1076 from asaadmahmoodspin/ui-improvements
Multiple UI Improvements
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 f93fe02e4..0457d620f 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -467,6 +467,10 @@ export function applyTheme(theme) {
changeCss('.date-separator .separator__text, .new-separator .separator__text', 'background:' + theme.centerChannelBg, 1);
changeCss('.post-image__column .post-image__details', 'background:' + theme.centerChannelBg, 1);
changeCss('.sidebar--right, .dropdown-menu, .popover', 'background:' + theme.centerChannelBg, 1);
+ changeCss('.popover.bottom>.arrow:after', 'border-bottom-color:' + theme.centerChannelBg, 1);
+ changeCss('.popover.right>.arrow:after', 'border-right-color:' + theme.centerChannelBg, 1);
+ changeCss('.popover.left>.arrow:after', 'border-left-color:' + theme.centerChannelBg, 1);
+ changeCss('.popover.top>.arrow:after', 'border-top-color:' + theme.centerChannelBg, 1);
changeCss('.search-bar__container .search__form .search-bar, .form-control', 'background:' + theme.centerChannelBg, 1);
}