From 1062fbdd6b4a2627da567518f0aa3ea8a28962fc Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Fri, 26 Jun 2020 13:10:39 +0200 Subject: [PATCH] Fix #2101: Improve contrast of text in control box --- CHANGES.md | 1 + sass/_variables.scss | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 5798a1d25..e0b9e4ce3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -25,6 +25,7 @@ Soon we'll deprecate the latter, so prepare now. - #2002: fix rendering of `muc_roomid_policy_hint` - #2006: fix rendering of emojis in case `use_system_emojis == false` - #2028: Implement XEP-0333 `displayed` chat marker +- #2101: Improve contrast of text in control box - The API method `api.settings.update` has been deprecated in favor of `api.settings.extend`. - Filter roster contacts via all available information (JID, nickname and VCard full name). - Allow ignoring of bootstrap modules at build using environment variable. For xample: `export BOOTSTRAP_IGNORE_MODULES="Modal,Dropdown" && make dist` diff --git a/sass/_variables.scss b/sass/_variables.scss index b05e0846e..827ca6c74 100644 --- a/sass/_variables.scss +++ b/sass/_variables.scss @@ -203,6 +203,8 @@ $mobile_portrait_length: 480px !default; --chat-correcting-color: #FFFFC0; --chat-head-text-color: #AAA; + --controlbox-text-color: #DDD; + --chat-info-color: var(--subdued-color); --chatbox-border-radius: 0px;