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);