theme: Fix drop shadow for tiled windows

Misplaced curly bracket prevented the :backdrop styling from getting
applied. Also fix the indentation while at it.
This commit is contained in:
Joonas Henriksson 2022-01-27 05:50:06 +02:00
parent 9a7750e339
commit a5d1f78bf2
No known key found for this signature in database
GPG Key ID: FAEDBC4FB5AA3B17

View File

@ -4138,12 +4138,13 @@ window {
&.tiled-left,
&.tiled-right,
&.tiled-bottom {
border-radius: 0;
box-shadow: 0 0 0 1px $_wm_border_backdrop,
0 0 0 20px transparent; //transparent control workaround -- #3670
}
&:backdrop { box-shadow: 0 0 0 1px $_wm_border_backdrop,
0 0 0 20px transparent; // #3670
border-radius: 0;
box-shadow: 0 0 0 1px $_wm_border_backdrop,
0 0 0 20px transparent; //transparent control workaround -- #3670
&:backdrop { box-shadow: 0 0 0 1px $_wm_border_backdrop,
0 0 0 20px transparent; // #3670
}
}
&.popup { box-shadow: none; }