From 0860c12e89fd20edae3abfaf50a44faf1204a98c Mon Sep 17 00:00:00 2001 From: WofWca Date: Thu, 24 Oct 2024 21:49:11 +0400 Subject: [PATCH] style: fix poor visibility of some text I searched for (almost) all explicitly defined colors and fixed the most obvious. --- CHANGELOG.md | 1 + packages/frontend/scss/message/_message-detail.scss | 2 +- packages/frontend/src/components/Settings/styles.module.scss | 2 +- .../components/screens/AccountDeletionScreen/styles.module.scss | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebb2a644b6..39a500ed13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - image thumbnails not showing in chat list #4247 - progress bar not working #4248 - avoid showing horizontal scrollbars in chat list #4253 +- style: poor visibility of some texts #4259 diff --git a/packages/frontend/scss/message/_message-detail.scss b/packages/frontend/scss/message/_message-detail.scss index f566fa8377..139194e91b 100644 --- a/packages/frontend/scss/message/_message-detail.scss +++ b/packages/frontend/scss/message/_message-detail.scss @@ -15,5 +15,5 @@ } .module-message-detail__unix-timestamp { - color: #eeefef; + opacity: 0.6; } diff --git a/packages/frontend/src/components/Settings/styles.module.scss b/packages/frontend/src/components/Settings/styles.module.scss index 37baa5ff02..cb12e3974e 100644 --- a/packages/frontend/src/components/Settings/styles.module.scss +++ b/packages/frontend/src/components/Settings/styles.module.scss @@ -165,7 +165,7 @@ $settingsHeight: 40px; } .profileAddress { - color: #969696; + opacity: 0.6; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; diff --git a/packages/frontend/src/components/screens/AccountDeletionScreen/styles.module.scss b/packages/frontend/src/components/screens/AccountDeletionScreen/styles.module.scss index 0d7c72dc47..ebeb753fcb 100644 --- a/packages/frontend/src/components/screens/AccountDeletionScreen/styles.module.scss +++ b/packages/frontend/src/components/screens/AccountDeletionScreen/styles.module.scss @@ -54,5 +54,5 @@ .accountSize { font-size: smaller; - color: #c0c0c0; + opacity: 0.6; }