theme: Fix drop shadow for tiled windows
authorJoonas Henriksson <joonas.henriksson@gmail.com>
Thu, 27 Jan 2022 03:50:06 +0000 (05:50 +0200)
committerJoonas Henriksson <joonas.henriksson@gmail.com>
Thu, 27 Jan 2022 03:50:06 +0000 (05:50 +0200)
Misplaced curly bracket prevented the :backdrop styling from getting
applied. Also fix the indentation while at it.

gtk/theme/Default/_common.scss

index ab04b3cc83f2fec6e3cd61b87e506045267874cb..4b3ca5b51eb18d9655fa4e2631c6daad98d0fafb 100644 (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; }