Skip to content

Commit

Permalink
fix(overlay): raise z-index for overlay-container (#1614)
Browse files Browse the repository at this point in the history
  • Loading branch information
jelbourn authored Oct 26, 2016
1 parent 783dbb3 commit 8f50c35
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/core/style/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ $z-index-fab: 20 !default;
$z-index-drawer: 100 !default;

// Overlay z indices.

// We want overlays to always appear over user content, so set a baseline
// very high z-index for the overlay container, which is where we create the new
// stacking context for all overlays.
$md-z-index-overlay-container: 1000;
$md-z-index-overlay: 1000;
$md-z-index-overlay-container: 1;
$md-z-index-overlay-backdrop: 1;


Expand Down

0 comments on commit 8f50c35

Please sign in to comment.