mirror of https://github.com/zulip/zulip.git
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:
parent
e19f4ed2a8
commit
0a9ae964fe
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue