summaryrefslogtreecommitdiffstats
path: root/webapp/utils/utils.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2017-04-03 22:38:15 +0500
committerCorey Hulen <corey@hulen.com>2017-04-03 10:38:15 -0700
commit4ebc85e05c3f45d2978c6fb8f9874b93658c3607 (patch)
tree80f6167de3c6a60f89f0608d373d80d40e0daf37 /webapp/utils/utils.jsx
parent1cbe6e797517089140ee2db12d73c0781f5e3e6b (diff)
downloadchat-4ebc85e05c3f45d2978c6fb8f9874b93658c3607.tar.gz
chat-4ebc85e05c3f45d2978c6fb8f9874b93658c3607.tar.bz2
chat-4ebc85e05c3f45d2978c6fb8f9874b93658c3607.zip
Ui improvements (#5948)
* PLT-5849 - Code block wrap on IOS * PLT-5972 - Comment has first line indented * PLT-6048 - Adjusting UI for link previews * PLT-5733 - Adding error text theme option
Diffstat (limited to 'webapp/utils/utils.jsx')
-rw-r--r--webapp/utils/utils.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/webapp/utils/utils.jsx b/webapp/utils/utils.jsx
index d2cebafa7..55ea72e8d 100644
--- a/webapp/utils/utils.jsx
+++ b/webapp/utils/utils.jsx
@@ -707,6 +707,10 @@ export function applyTheme(theme) {
changeCss('.app__body .btn.btn-primary, .app__body .post__pinned-badge', 'color:' + theme.buttonColor);
}
+ if (theme.errorTextColor) {
+ changeCss('.app__body .has-error .help-block, .app__body .has-error .control-label, .app__body .has-error .radio, .app__body .has-error .checkbox, .app__body .has-error .radio-inline, .app__body .has-error .checkbox-inline, .app__body .has-error.radio label, .app__body .has-error.checkbox label, .app__body .has-error.radio-inline label, .app__body .has-error.checkbox-inline label', 'color:' + theme.errorTextColor);
+ }
+
if (theme.mentionHighlightBg) {
changeCss('.app__body .mention--highlight, .app__body .search-highlight', 'background:' + theme.mentionHighlightBg);
changeCss('.app__body .post.post--comment .post__body.mention-comment', 'border-color:' + theme.mentionHighlightBg);