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: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1697>
This commit is contained in:
Jonas Dreßler 2021-02-18 22:10:02 +01:00
parent 135c9194cd
commit 267c5f84a8

View File

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