Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Window Decorations
- //
- decoration {
- transition: $shadow_transition;
- border-radius: $wm_radius;
- box-shadow: 0 0 3px 1px $wm_shadow, // Starts my custom shadows
- 0 0 8px 1px $wm_shadow,
- 0 0 10px 1px $wm_shadow,
- 0 0 16px 1px $wm_shadow,
- 0 0 0 1px $wm_shadow,
- $wm_outline;
- // this is used for the resize cursor area
- margin: 6px;
- &:backdrop {
- // the transparent shadow here is to enforce that the shadow extents don't
- // change when we go to backdrop, to prevent jumping windows
- box-shadow: 0 0 3px 1px $wm_shadow_inactive,
- 0 0 8px 1px $wm_shadow_inactive,
- 0 0 10px 1px $wm_shadow_inactive,
- 0 0 16px 1px $wm_shadow_inactive,
- 0 0 0 1px $wm_shadow_inactive,
- $wm_outline_inactive; // Ends my custom shadows
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement