4b56acb775
- drop card style from calendar - remove focus ability from non-interactive calendar elements - flesh out the styles for the calendar grid - fix margin and padding issue with login screen calendar - update no-notifications icon - add padding to media player buttons - catch a couple other minor style papercuts Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2161>
184 lines
4.3 KiB
SCSS
184 lines
4.3 KiB
SCSS
/* Message List */
|
|
// a.k.a. notifications in the menu
|
|
|
|
// main list
|
|
.message-list {
|
|
width: 32em;
|
|
border: none;
|
|
border-style: solid;
|
|
border-color: $borders_color;
|
|
padding: $base_padding;
|
|
|
|
// padding and margins to account for scrollbar
|
|
&:ltr {margin-left: 0; margin-right: $base_margin; padding-right: $base_padding; border-right-width: 1px; }
|
|
&:rtl {margin-right: 0; margin-left: $base_margin; padding-left: $base_padding; border-left-width: 1px; }
|
|
|
|
.message-list-placeholder {
|
|
font-weight:1000;
|
|
font-size: 18pt;
|
|
color: transparentize($fg_color, .8);
|
|
spacing: 12px;
|
|
|
|
// icon size and color
|
|
> StIcon {
|
|
icon-size: $base_icon_size*3; // 48px
|
|
margin-bottom: $base_margin*3;
|
|
-st-icon-style: symbolic;
|
|
}
|
|
}
|
|
}
|
|
|
|
.message-list-sections {
|
|
spacing: $base_spacing;
|
|
margin: 0;
|
|
padding-bottom: $base_padding;
|
|
|
|
// to account for scrollbar
|
|
&:ltr {margin-right: $base_margin * 3; }
|
|
&:rtl {margin-left: $base_margin * 3;}
|
|
}
|
|
|
|
.message-list-section,
|
|
.message-list-section-list {
|
|
spacing: $base_spacing;
|
|
}
|
|
|
|
// do-not-disturb + clear button
|
|
.message-list-controls {
|
|
// NOTE: remove the padding if notification_bubble could remove margin for drop shadow
|
|
padding: $base_padding;
|
|
margin: 0;
|
|
spacing: $base_spacing;
|
|
|
|
.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: 32px;
|
|
border-style: solid;
|
|
|
|
&:focus {
|
|
border-color: transparentize($selected_bg_color, 0.4);
|
|
}
|
|
}
|
|
}
|
|
|
|
// message bubbles
|
|
.message {
|
|
@include card;
|
|
|
|
// icon container
|
|
.message-icon-bin {
|
|
padding: ($base_padding * 3);
|
|
padding-right:$base_padding;
|
|
|
|
&:rtl {
|
|
padding-right:$base_padding;
|
|
}
|
|
|
|
// icon size and color
|
|
> StIcon {
|
|
icon-size: $base_icon_size*2; // 32px
|
|
-st-icon-style: symbolic;
|
|
}
|
|
|
|
// fallback
|
|
> .fallback-app-icon {
|
|
width: $base_icon_size;
|
|
height: $base_icon_size;
|
|
}
|
|
}
|
|
|
|
// content
|
|
.message-content {
|
|
spacing: 4px;
|
|
padding: ($base_padding*1.5);
|
|
margin-bottom: $base_margin*2;
|
|
}
|
|
|
|
// title
|
|
.message-title {
|
|
font-weight: bold;
|
|
/* HACK: the label should be baseline-aligned with a 1em label, fake this with some bottom padding */
|
|
padding-top: 0.57em;
|
|
}
|
|
|
|
// secondary container in title box
|
|
.message-secondary-bin {
|
|
padding: 0 $base_margin * 2;
|
|
|
|
// notification time stamp
|
|
> .event-time {
|
|
color: transparentize($fg_color, 0.5);
|
|
@include fontsize($base_font_size - 2);
|
|
/* HACK: the label should be baseline-aligned with a 1em label, fake this with some bottom padding */
|
|
padding-bottom: 0.13em;
|
|
|
|
&:ltr { text-align: right };
|
|
&:rtl { text-align: left };
|
|
}
|
|
}
|
|
|
|
// close button
|
|
.message-close-button {
|
|
color: $fg_color;
|
|
background-color: transparentize($fg_color, 0.9);
|
|
border-radius: 99px;
|
|
padding: $base_padding - 1px;
|
|
margin: 1px;
|
|
&:hover {background-color: transparentize($fg_color, 0.8);}
|
|
&:active {background-color: transparentize($fg_color, 0.9);}
|
|
}
|
|
|
|
// body
|
|
.message-body {color: darken($fg_color, 10%);}
|
|
}
|
|
|
|
// URLs in messages
|
|
.url-highlighter {
|
|
link-color: $link_color;
|
|
}
|
|
|
|
/* Media Controls */
|
|
.message-media-control {
|
|
padding: 0 $base_padding*3;
|
|
margin: $base_padding*2 0;
|
|
border-radius: $base_border_radius;
|
|
color: $fg_color;
|
|
|
|
// colors are lightened since the media controls are in a card
|
|
&:hover {
|
|
background-color: lighten($hover_bg_color, 5%);
|
|
color: $fg_color;
|
|
}
|
|
|
|
&:active {
|
|
background-color: lighten($active_bg_color, 5%);
|
|
color: $fg_color;
|
|
}
|
|
|
|
&:insensitive { color: lighten($insensitive_fg_color, 5%); }
|
|
|
|
// fix margin for last button
|
|
&:last-child:ltr { margin-right: $base_margin*3; }
|
|
&:last-child:rtl { margin-left: $base_margin*3; }
|
|
}
|
|
|
|
// album-art
|
|
.media-message-cover-icon {
|
|
icon-size: $base_icon_size*3 !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; // 32px
|
|
padding: ($base_padding*2 + 2); // 16px
|
|
}
|
|
}
|