diff --git a/share/themes/Kali-Dark/gnome-shell/gnome-shell.css b/share/themes/Kali-Dark/gnome-shell/gnome-shell.css index 3f68ef7b..ae8b12ba 100644 --- a/share/themes/Kali-Dark/gnome-shell/gnome-shell.css +++ b/share/themes/Kali-Dark/gnome-shell/gnome-shell.css @@ -692,6 +692,10 @@ StScrollBar { background-color: #23252e; border: 1px solid #0d0e11; border-radius: 12px; } + .osd-window StIcon, + .resize-popup StIcon, + .switcher-list StIcon, .workspace-switcher-container StIcon { + icon-shadow: rgba(0, 0, 0, 0.7) 0 1px 6px; } .modal-dialog StEntry, .prompt-dialog StEntry, .audio-device-selection-dialog StEntry, .access-dialog StEntry, .geolocation-dialog StEntry, .extension-dialog StEntry, .inhibit-shortcuts-dialog StEntry, .nm-dialog StEntry, .notification-banner StEntry { color: #eeeeec; diff --git a/share/themes/Kali-Light/gnome-shell/gnome-shell.css b/share/themes/Kali-Light/gnome-shell/gnome-shell.css index 8acb4570..c2521f7c 100644 --- a/share/themes/Kali-Light/gnome-shell/gnome-shell.css +++ b/share/themes/Kali-Light/gnome-shell/gnome-shell.css @@ -692,6 +692,10 @@ StScrollBar { background-color: #ffffff; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 12px; } + .osd-window StIcon, + .resize-popup StIcon, + .switcher-list StIcon, .workspace-switcher-container StIcon { + icon-shadow: rgba(0, 0, 0, 0.7) 0 1px 6px; } .modal-dialog StEntry, .prompt-dialog StEntry, .audio-device-selection-dialog StEntry, .access-dialog StEntry, .geolocation-dialog StEntry, .extension-dialog StEntry, .inhibit-shortcuts-dialog StEntry, .nm-dialog StEntry, .notification-banner StEntry { color: #5c616c; diff --git a/src/themes/Kali/sass/gnome-shell-sass/_common.scss b/src/themes/Kali/sass/gnome-shell-sass/_common.scss index fee2f023..d70cc0c9 100644 --- a/src/themes/Kali/sass/gnome-shell-sass/_common.scss +++ b/src/themes/Kali/sass/gnome-shell-sass/_common.scss @@ -777,6 +777,10 @@ StScrollBar { background-color: $bg_color; border: 1px solid if($variant=='light', transparentize(black, 0.85), $borders_color); border-radius: 12px; + + StIcon { + icon-shadow: transparentize(black, .3) 0 1px 6px; + } } %bubble-entry {