Gnome-Shell: tweak notifications in calendar panel

This commit is contained in:
Daniel Ruiz de Alegría 2022-03-09 14:55:23 +01:00
parent 682ce6ec3d
commit 1a2c2effbf
No known key found for this signature in database
GPG Key ID: 59667A77E8BFCB6C
3 changed files with 29 additions and 0 deletions

View File

@ -2734,6 +2734,16 @@ $_osd_color: if($variant=='light', black, $fg_color);
spacing: 12px;
font-size: 10pt; }
.message .message-content {
padding: 6px;
spacing: 0; }
.message .message-title {
padding-top: .5em; }
.message .message-secondary-bin > .event-time {
padding-bottom: .5em; }
/* Notifications & Message Tray */
.notification-banner {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }

View File

@ -2730,6 +2730,16 @@ $_osd_color: if($variant=='light', black, $fg_color);
spacing: 12px;
font-size: 10pt; }
.message .message-content {
padding: 6px;
spacing: 0; }
.message .message-title {
padding-top: .5em; }
.message .message-secondary-bin > .event-time {
padding-bottom: .5em; }
/* Notifications & Message Tray */
.notification-banner {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }

View File

@ -86,6 +86,15 @@ $_osd_color: if($variant=='light', black, $fg_color);
@include fontsize(10);
}
.message {
.message-content {
padding: $base_padding;
spacing: 0;
}
.message-title { padding-top: .5em; }
.message-secondary-bin > .event-time { padding-bottom: .5em; }
}
/* Notifications & Message Tray */
.notification-banner {
box-shadow: 0 2px 4px transparentize(black, .8);