From 1a2c2effbf0c376dc719833bf4a61432f589fcdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Wed, 9 Mar 2022 14:55:23 +0100 Subject: [PATCH] Gnome-Shell: tweak notifications in calendar panel --- share/themes/Kali-Dark/gnome-shell/gnome-shell.css | 10 ++++++++++ share/themes/Kali-Light/gnome-shell/gnome-shell.css | 10 ++++++++++ src/themes/Kali/sass/gnome-shell/_common-tweaks.scss | 9 +++++++++ 3 files changed, 29 insertions(+) diff --git a/share/themes/Kali-Dark/gnome-shell/gnome-shell.css b/share/themes/Kali-Dark/gnome-shell/gnome-shell.css index 5a3e78e3..89904cb9 100644 --- a/share/themes/Kali-Dark/gnome-shell/gnome-shell.css +++ b/share/themes/Kali-Dark/gnome-shell/gnome-shell.css @@ -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); } diff --git a/share/themes/Kali-Light/gnome-shell/gnome-shell.css b/share/themes/Kali-Light/gnome-shell/gnome-shell.css index 5b227e3f..a747e320 100644 --- a/share/themes/Kali-Light/gnome-shell/gnome-shell.css +++ b/share/themes/Kali-Light/gnome-shell/gnome-shell.css @@ -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); } diff --git a/src/themes/Kali/sass/gnome-shell/_common-tweaks.scss b/src/themes/Kali/sass/gnome-shell/_common-tweaks.scss index bb61e88c..a6b95480 100644 --- a/src/themes/Kali/sass/gnome-shell/_common-tweaks.scss +++ b/src/themes/Kali/sass/gnome-shell/_common-tweaks.scss @@ -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);