From 8858f03847f7b0100019a8f313d0d9e7a6ee4659 Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Wed, 19 Mar 2025 21:30:49 +0530 Subject: [PATCH] compose: Revert send button color to that in 9.x. This reverts commits 9501082e9900957e88b98f7bc56e80675ce55072 and a8cfd2fb04c3bd04d1225867ea529abb894a2ed8. --- web/styles/compose.css | 6 +++--- web/styles/message_row.css | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/web/styles/compose.css b/web/styles/compose.css index 18d12bf7e0..0742973754 100644 --- a/web/styles/compose.css +++ b/web/styles/compose.css @@ -1177,8 +1177,8 @@ textarea.new_message_textarea { border-radius: 4px; border: 0; margin-bottom: 0; - color: var(--color-text-info-primary-action-button); - background-color: var(--color-background-info-primary-action-button); + color: var(--color-compose-send-button-icon-color); + background-color: var(--color-compose-send-button-background); &:active { transition: transform 80ms; @@ -1198,7 +1198,7 @@ textarea.new_message_textarea { &:hover { background-color: var( - --color-background-info-primary-action-button-hover + --color-compose-send-button-background-interactive ); } } diff --git a/web/styles/message_row.css b/web/styles/message_row.css index 73d49a2036..4b9dde5334 100644 --- a/web/styles/message_row.css +++ b/web/styles/message_row.css @@ -734,12 +734,12 @@ .message_edit_save { /* Match Save button's basic colors to the compose box Send button. */ - color: var(--color-text-brand-primary-action-button); - background-color: var(--color-background-brand-primary-action-button); + color: var(--color-compose-send-button-icon-color); + background-color: var(--color-compose-send-button-background); &:hover { background-color: var( - --color-background-brand-primary-action-button-hover + --color-compose-send-button-background-interactive ); }