From 267c5f84a83bc83f5203d2e8da96e461be91d38c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Dre=C3=9Fler?= Date: Thu, 18 Feb 2021 22:10:02 +0100 Subject: [PATCH] theme/window-picker: Fixup box-shadow of overview workspace backgrounds A small mistake snuck in right before landing the previous commit and the box-shadow was moved 4px vertically above the wallpaper instead of below it. Fix that and put it 4px below the wallpaper. Part-of: --- data/theme/gnome-shell-sass/widgets/_window-picker.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/theme/gnome-shell-sass/widgets/_window-picker.scss b/data/theme/gnome-shell-sass/widgets/_window-picker.scss index 7592aa4c9..b3b93f291 100644 --- a/data/theme/gnome-shell-sass/widgets/_window-picker.scss +++ b/data/theme/gnome-shell-sass/widgets/_window-picker.scss @@ -49,5 +49,5 @@ $window_close_button_padding: 3px; // keep in sync with BACKGROUND_CORNER_RADIUS_PIXELS in workspace.js border-radius: 30px; background-color: $osd_bg_color; - box-shadow: 0 -4px 16px 4px transparentize(darken($osd_bg_color, 30%), 0.7); + box-shadow: 0 4px 16px 4px transparentize(darken($osd_bg_color, 30%), 0.7); }