send_later_popover: Improve on-focus styling of enter send choices.

Previously, no custom styling was being applied to the enter send
choice options, which led to uneven styling from the other popover
options, as well as the outline ring being cut-off from the edges of
the popover. This commit fixes these issues by adding custom styling
for the outline ring when the enter send choice options are focused.
This commit is contained in:
Sayam Samal 2024-10-02 14:47:55 +05:30 committed by Tim Abbott
parent e19f4ed2a8
commit 0a9ae964fe
1 changed files with 7 additions and 0 deletions

View File

@ -1071,6 +1071,13 @@ textarea.new_message_textarea {
background: var(--color-background-active-popover-menu);
}
&:focus-visible {
background: var(--color-background-hover-popover-menu);
border-radius: 4px;
outline: 1px solid var(--color-outline-focus) !important;
outline-offset: -1px;
}
& .enter_sends_choice_radio {
width: auto;
cursor: pointer;