Skip to content

Commit

Permalink
fix(overlay): transparent overlay not blocking scroll on Firefox 57 (#…
Browse files Browse the repository at this point in the history
…9446)

As of Firefox 57, it looks like elements with a transparent background won't capture scroll events. These changes work around the issue by not setting the background color, but using `opacity` to hide the element while keeping it scrollable.

Fixes #8924.
  • Loading branch information
crisbeto authored and jelbourn committed Jan 23, 2018
1 parent 66dc73a commit d0ad3b7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/cdk/overlay/_overlay.scss
Expand Up @@ -73,7 +73,13 @@ $backdrop-animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default;
}

.cdk-overlay-transparent-backdrop {
background: none;
// Note: as of Firefox 57, having the backdrop be `background: none` will prevent it from
// capturing the user's mouse scroll events. Since we also can't use something like
// `rgba(0, 0, 0, 0)`, we work around the inconsistency by not setting the background at
// all and using `opacity` to make the element transparent.
&, &.cdk-overlay-backdrop-showing {
opacity: 0;
}
}

// Used when disabling global scrolling.
Expand Down

0 comments on commit d0ad3b7

Please sign in to comment.