From 0173a6646f48b552d3cbe3fe30206d61fa5d7e5d Mon Sep 17 00:00:00 2001 From: Jakub Steiner Date: Thu, 4 Feb 2021 14:16:00 +0100 Subject: [PATCH] stylesheet: Increase app dropshadows Increase the app icon dropshadow to separate the icon from the window thumbnail. The shadow change is global, but due to perfomance implications, the icon-dropshadow class is only used on the thumbnail view. Fixes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3670 Part-of: --- data/theme/gnome-shell-sass/widgets/_base.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/theme/gnome-shell-sass/widgets/_base.scss b/data/theme/gnome-shell-sass/widgets/_base.scss index 914dd5955..69ebb301a 100644 --- a/data/theme/gnome-shell-sass/widgets/_base.scss +++ b/data/theme/gnome-shell-sass/widgets/_base.scss @@ -14,5 +14,5 @@ // Dropshadow for large icons .icon-dropshadow { - icon-shadow: 0 1px 2px rgba(black, 0.4); + icon-shadow: 0 1px 5px rgba(black, 0.8); }