From 502b9a76a940644fc7125aa7bc46bd23fa227a91 Mon Sep 17 00:00:00 2001 From: Karl Stolley Date: Tue, 16 Jul 2024 13:36:18 -0500 Subject: [PATCH] compose: Ensure color concord across compose and edit boxes. --- web/styles/compose.css | 1 + web/styles/message_row.css | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/web/styles/compose.css b/web/styles/compose.css index ddf758b4a4..89b49443e7 100644 --- a/web/styles/compose.css +++ b/web/styles/compose.css @@ -352,6 +352,7 @@ #preview_message_area { margin-right: calc(var(--composebox-buttons-width) * -1); padding-right: var(--composebox-buttons-width); + color: var(--color-text-default); } .surround-formatting-buttons-row { diff --git a/web/styles/message_row.css b/web/styles/message_row.css index 6bb3a7e3b7..bb8fc7a9ef 100644 --- a/web/styles/message_row.css +++ b/web/styles/message_row.css @@ -560,7 +560,7 @@ /* Setting resize as none hides the bottom right diagonal box (which even has a background color of its own!). */ resize: none !important; - color: hsl(0deg 0% 33%); + color: var(--color-text-default); background-color: hsl(0deg 0% 100%); border-radius: 3px; vertical-align: middle;