Skip to content

Commit 8e7fb3a

Browse files
automated-signaltrevor-signalbrianHarder
authored
[#7453] Update conversation list styles when dragging
Co-authored-by: trevor-signal <[email protected]> Co-authored-by: Brian Harder <[email protected]>
1 parent 2aa4f9f commit 8e7fb3a

File tree

1 file changed

+22
-10
lines changed

1 file changed

+22
-10
lines changed

stylesheets/_modules.scss

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5069,18 +5069,30 @@ button.module-calling-participants-list__contact {
50695069
}
50705070
}
50715071

5072-
&:hover:not(:disabled, &--disabled, &--is-selected),
5073-
&:focus:not(:disabled, &--disabled, &--is-selected) {
5074-
@include mixins.light-theme {
5075-
background-color: variables.$color-gray-05;
5076-
#{$unread-indicator} {
5077-
border-color: variables.$color-gray-05;
5078-
}
5072+
&:hover:not(:disabled, &--disabled, &--is-selected) {
5073+
background-color: light-dark(
5074+
variables.$color-gray-05,
5075+
variables.$color-gray-75
5076+
);
5077+
#{$unread-indicator} {
5078+
border-color: light-dark(
5079+
variables.$color-gray-05,
5080+
variables.$color-gray-75
5081+
);
50795082
}
5080-
@include mixins.dark-theme {
5081-
background-color: variables.$color-gray-75;
5083+
}
5084+
5085+
@include mixins.keyboard-mode {
5086+
&:focus:not(:disabled, &--disabled, &--is-selected) {
5087+
background-color: light-dark(
5088+
variables.$color-gray-05,
5089+
variables.$color-gray-75
5090+
);
50825091
#{$unread-indicator} {
5083-
border-color: variables.$color-gray-75;
5092+
border-color: light-dark(
5093+
variables.$color-gray-05,
5094+
variables.$color-gray-75
5095+
);
50845096
}
50855097
}
50865098
}

0 commit comments

Comments
 (0)