compose: Revert send button color to that in 9.x.

This reverts commits 9501082e99 and 
a8cfd2fb04.
This commit is contained in:
Aman Agrawal
2025-03-19 21:30:49 +05:30
committed by GitHub
parent 4dd11e7318
commit 8858f03847
2 changed files with 6 additions and 6 deletions

View File

@@ -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
);
}
}

View File

@@ -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
);
}