Advertisement
Guest User

My problematic customization

a guest
Feb 14th, 2021
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.94 KB | None | 0 0
  1. // Window Decorations
  2.   //
  3.  
  4.   decoration {
  5.     transition: $shadow_transition;
  6.     border-radius: $wm_radius;
  7.     box-shadow: 0 0 3px 1px $wm_shadow, //  Starts my custom shadows
  8.                 0 0 8px 1px $wm_shadow,
  9.                 0 0 10px 1px $wm_shadow,
  10.                 0 0 16px 1px $wm_shadow,
  11.                 0 0 0 1px $wm_shadow,
  12.                 $wm_outline;
  13.  
  14.     // this is used for the resize cursor area
  15.     margin: 6px;
  16.  
  17.     &:backdrop {
  18.       // the transparent shadow here is to enforce that the shadow extents don't
  19.      // change when we go to backdrop, to prevent jumping windows
  20.      box-shadow: 0 0 3px 1px $wm_shadow_inactive,
  21.                  0 0 8px 1px $wm_shadow_inactive,
  22.                  0 0 10px 1px $wm_shadow_inactive,
  23.                  0 0 16px 1px $wm_shadow_inactive,
  24.                  0 0 0 1px $wm_shadow_inactive,
  25.                  $wm_outline_inactive; // Ends my custom shadows
  26.    }
  27.  
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement