2019-12-18 16:25:03 -05:00
|
|
|
/* Message List */
|
|
|
|
// a.k.a. notifications in the menu
|
|
|
|
|
|
|
|
// main list
|
|
|
|
.message-list {
|
2019-12-19 10:38:27 -05:00
|
|
|
width: 31.5em;
|
|
|
|
padding: 0 $base_padding * 2;
|
2020-01-19 15:45:36 -05:00
|
|
|
|
|
|
|
.message-list-placeholder { spacing: 12px; }
|
2019-12-18 16:25:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.message-list-sections {
|
2019-12-19 10:38:27 -05:00
|
|
|
spacing: $base_spacing;
|
2020-02-06 07:42:13 -05:00
|
|
|
margin: 0 $base_margin * 4; // to account for scrollbar
|
2019-12-18 16:25:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.message-list-section,
|
|
|
|
.message-list-section-list {
|
2019-12-19 10:38:27 -05:00
|
|
|
spacing: $base_spacing;
|
2019-12-18 16:25:03 -05:00
|
|
|
}
|
|
|
|
|
2018-05-04 11:55:29 -04:00
|
|
|
// do-not-disturb + clear button
|
|
|
|
.message-list-controls {
|
2020-02-06 07:42:13 -05:00
|
|
|
margin: ($base_margin * 2) ($base_margin * 4) 0;
|
|
|
|
// NOTE: remove the padding if notification_bubble could remove margin for drop shadow
|
|
|
|
padding: $base_margin;
|
2020-02-20 11:26:17 -05:00
|
|
|
spacing: $base_spacing * 2;
|
2021-07-20 08:13:40 -04:00
|
|
|
|
|
|
|
.dnd-button {
|
|
|
|
// We need this because the focus outline isn't inset like for the buttons
|
|
|
|
// so the dnd button would grow when it gets focus if we didn't change only
|
|
|
|
// its color when focusing.
|
|
|
|
border-width: 2px;
|
|
|
|
border-color: transparent;
|
|
|
|
border-radius: 99px;
|
|
|
|
border-style: solid;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
border-color: transparentize($selected_bg_color, 0.4);
|
|
|
|
}
|
|
|
|
}
|
2019-12-18 16:25:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// message bubbles
|
|
|
|
.message {
|
2020-01-24 22:15:54 -05:00
|
|
|
@include notification_bubble;
|
2019-12-19 10:38:27 -05:00
|
|
|
|
|
|
|
// icon container
|
|
|
|
.message-icon-bin {
|
2020-02-04 11:15:27 -05:00
|
|
|
padding: ($base_padding * 3) 0 ($base_padding * 3) ($base_padding * 2);
|
2019-12-19 10:38:27 -05:00
|
|
|
|
|
|
|
&:rtl {
|
2020-02-04 11:15:27 -05:00
|
|
|
padding: ($base_padding * 3) ($base_padding * 2) ($base_padding * 3) 0;
|
2019-12-19 10:38:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// icon size and color
|
|
|
|
> StIcon {
|
|
|
|
icon-size: $base_icon_size*2; // 32px
|
|
|
|
-st-icon-style: symbolic;
|
|
|
|
}
|
|
|
|
|
|
|
|
// fallback
|
2020-01-23 11:23:13 -05:00
|
|
|
> .fallback-app-icon {
|
2019-12-19 10:38:27 -05:00
|
|
|
width: $base_icon_size;
|
|
|
|
height: $base_icon_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 11:08:20 -05:00
|
|
|
// content
|
|
|
|
.message-content {
|
2020-02-04 11:15:27 -05:00
|
|
|
padding: $base_padding + $base_margin * 2;
|
|
|
|
spacing: 4px;
|
2020-02-04 11:08:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// title
|
|
|
|
.message-title {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2019-12-19 10:38:27 -05:00
|
|
|
// secondary container in title box
|
|
|
|
.message-secondary-bin {
|
2020-02-04 11:15:27 -05:00
|
|
|
padding: 0 $base_margin * 2;
|
2019-12-19 10:38:27 -05:00
|
|
|
|
|
|
|
// notification time stamp
|
|
|
|
> .event-time {
|
|
|
|
color: transparentize($fg_color, 0.5);
|
2019-12-19 11:09:33 -05:00
|
|
|
@include fontsize($base_font_size - 2);
|
2019-12-19 10:38:27 -05:00
|
|
|
/* HACK: the label should be baseline-aligned with a 1em label, fake this with some bottom padding */
|
2020-02-04 11:15:27 -05:00
|
|
|
padding-bottom: 0.13em;
|
2020-08-03 10:38:17 -04:00
|
|
|
|
|
|
|
&:ltr { text-align: right };
|
|
|
|
&:rtl { text-align: left };
|
2019-12-19 10:38:27 -05:00
|
|
|
}
|
|
|
|
}
|
2019-12-18 16:25:03 -05:00
|
|
|
|
2020-02-04 11:08:20 -05:00
|
|
|
// close button
|
|
|
|
.message-close-button {
|
|
|
|
color: lighten($fg_color, 15%);
|
|
|
|
&:hover { color: if($variant=='light', lighten($fg_color, 30%), darken($fg_color, 10%)); }
|
|
|
|
&:active { color: if($variant=='light', lighten($fg_color, 40%), darken($fg_color, 20%)); }
|
|
|
|
}
|
2020-02-04 11:15:27 -05:00
|
|
|
|
|
|
|
// body
|
|
|
|
.message-body {
|
|
|
|
color: darken($fg_color, 10%);
|
|
|
|
}
|
2019-12-18 16:25:03 -05:00
|
|
|
}
|
|
|
|
|
2020-01-19 11:24:47 -05:00
|
|
|
// URLs in messages
|
|
|
|
.url-highlighter {
|
|
|
|
link-color: $link_color;
|
|
|
|
}
|
|
|
|
|
2019-12-18 16:25:03 -05:00
|
|
|
/* Media Controls */
|
|
|
|
.message-media-control {
|
2021-02-03 20:22:22 -05:00
|
|
|
padding: $base_padding * 2 1.64em; // $base_padding * 4 = 24px
|
2019-12-19 10:38:27 -05:00
|
|
|
color: darken($fg_color, 15%);
|
|
|
|
|
|
|
|
// uses $hover_bg_color since the media controls are in a notification_bubble
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($hover_bg_color, 5%);
|
|
|
|
color: $fg_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: darken($hover_bg_color, 2%);
|
|
|
|
color: $fg_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:insensitive { color: darken($fg_color,40%); }
|
|
|
|
|
2020-02-04 11:15:27 -05:00
|
|
|
// fix border-radius for last button
|
|
|
|
&:last-child:ltr { border-radius: 0 $base_border_radius+2 $base_border_radius+2 0; }
|
|
|
|
&:last-child:rtl { border-radius: $base_border_radius+2 0 0 $base_border_radius+2; }
|
2019-12-18 16:25:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// album-art
|
|
|
|
.media-message-cover-icon {
|
2019-12-19 10:38:27 -05:00
|
|
|
icon-size: $base_icon_size*2 !important; // 48px
|
|
|
|
border-radius: $base_border_radius;
|
|
|
|
|
|
|
|
// when there is no artwork
|
|
|
|
&.fallback {
|
|
|
|
color: darken($fg_color, 17%);
|
|
|
|
background-color: $bg_color;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: $base_border_radius;
|
|
|
|
icon-size: $base_icon_size * 2 !important;
|
|
|
|
}
|
2020-01-19 15:45:36 -05:00
|
|
|
}
|