summaryrefslogtreecommitdiff
path: root/widgets/_message-list.scss
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/_message-list.scss')
-rw-r--r--widgets/_message-list.scss12
1 files changed, 11 insertions, 1 deletions
diff --git a/widgets/_message-list.scss b/widgets/_message-list.scss
index 5196661..d0e5d85 100644
--- a/widgets/_message-list.scss
+++ b/widgets/_message-list.scss
@@ -143,6 +143,11 @@
border-radius: $base_border_radius;
color: $fg_color;
+ @if $is_highcontrast {
+ border: 1px solid $hc_inset_color;
+ margin: $base_padding*2 2px;
+ }
+
// colors are lightened since the media controls are in a card
&:hover {
background-color: lighten($hover_bg_color, 5%);
@@ -154,7 +159,12 @@
color: $fg_color;
}
- &:insensitive { color: lighten($insensitive_fg_color, 5%); }
+ &:insensitive {
+ color: lighten($insensitive_fg_color, 5%);
+ @if $is_highcontrast {
+ border-color: transparent;
+ }
+ }
// fix margin for last button
&:last-child:ltr { margin-right: $base_margin*3; }