nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / angular-material / modules / js / backdrop / backdrop.css
1 /*!
2  * Angular Material Design
3  * https://github.com/angular/material
4  * @license MIT
5  * v0.9.8
6  */
7 /* mixin definition ; sets LTR and RTL within the same style call */
8 md-backdrop {
9   z-index: 50;
10   background-color: transparent;
11   position: absolute;
12   height: 100%;
13   left: 0;
14   right: 0; }
15   md-backdrop.md-select-backdrop {
16     z-index: 81; }
17   md-backdrop.md-dialog-backdrop {
18     z-index: 79; }
19   md-backdrop.md-bottom-sheet-backdrop {
20     z-index: 69; }
21   md-backdrop.md-sidenav-backdrop {
22     z-index: 59; }
23   md-backdrop.md-click-catcher {
24     top: 0;
25     position: fixed; }
26   md-backdrop.ng-enter {
27     -webkit-animation: cubic-bezier(0.25, 0.8, 0.25, 1) mdBackdropFadeIn 0.5s both;
28             animation: cubic-bezier(0.25, 0.8, 0.25, 1) mdBackdropFadeIn 0.5s both; }
29   md-backdrop.ng-leave {
30     -webkit-animation: cubic-bezier(0.55, 0, 0.55, 0.2) mdBackdropFadeOut 0.2s both;
31             animation: cubic-bezier(0.55, 0, 0.55, 0.2) mdBackdropFadeOut 0.2s both; }
32
33 @-webkit-keyframes mdBackdropFadeIn {
34   from {
35     opacity: 0; }
36
37   to {
38     opacity: 1; } }
39
40 @keyframes mdBackdropFadeIn {
41   from {
42     opacity: 0; }
43
44   to {
45     opacity: 1; } }
46
47 @-webkit-keyframes mdBackdropFadeOut {
48   from {
49     opacity: 1; }
50
51   to {
52     opacity: 0; } }
53
54 @keyframes mdBackdropFadeOut {
55   from {
56     opacity: 1; }
57
58   to {
59     opacity: 0; } }