edb32b99955a52dff88b9b833025e9037714c5d3
[vnfsdk/refrepo.git] /
1 /*!
2  * Angular Material Design
3  * https://github.com/angular/material
4  * @license MIT
5  * v1.1.3
6  */
7 md-progress-linear {
8   display: block;
9   position: relative;
10   width: 100%;
11   height: 5px;
12   padding-top: 0 !important;
13   margin-bottom: 0 !important; }
14   md-progress-linear._md-progress-linear-disabled {
15     visibility: hidden; }
16   md-progress-linear .md-container {
17     display: block;
18     position: relative;
19     overflow: hidden;
20     width: 100%;
21     height: 5px;
22     -webkit-transform: translate(0, 0) scale(1, 1);
23             transform: translate(0, 0) scale(1, 1); }
24     md-progress-linear .md-container .md-bar {
25       position: absolute;
26       left: 0;
27       top: 0;
28       bottom: 0;
29       width: 100%;
30       height: 5px; }
31     md-progress-linear .md-container .md-dashed:before {
32       content: "";
33       display: none;
34       position: absolute;
35       margin-top: 0;
36       height: 5px;
37       width: 100%;
38       background-color: transparent;
39       background-size: 10px 10px !important;
40       background-position: 0px -23px; }
41     md-progress-linear .md-container .md-bar1, md-progress-linear .md-container .md-bar2 {
42       -webkit-transition: -webkit-transform 0.2s linear;
43       transition: -webkit-transform 0.2s linear;
44       transition: transform 0.2s linear;
45       transition: transform 0.2s linear, -webkit-transform 0.2s linear; }
46     md-progress-linear .md-container.md-mode-query .md-bar1 {
47       display: none; }
48     md-progress-linear .md-container.md-mode-query .md-bar2 {
49       -webkit-transition: all 0.2s linear;
50       transition: all 0.2s linear;
51       -webkit-animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
52               animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1); }
53     md-progress-linear .md-container.md-mode-determinate .md-bar1 {
54       display: none; }
55     md-progress-linear .md-container.md-mode-indeterminate .md-bar1 {
56       -webkit-animation: md-progress-linear-indeterminate-scale-1 4s infinite, md-progress-linear-indeterminate-1 4s infinite;
57               animation: md-progress-linear-indeterminate-scale-1 4s infinite, md-progress-linear-indeterminate-1 4s infinite; }
58     md-progress-linear .md-container.md-mode-indeterminate .md-bar2 {
59       -webkit-animation: md-progress-linear-indeterminate-scale-2 4s infinite, md-progress-linear-indeterminate-2 4s infinite;
60               animation: md-progress-linear-indeterminate-scale-2 4s infinite, md-progress-linear-indeterminate-2 4s infinite; }
61     md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container {
62       -webkit-animation: none;
63               animation: none; }
64       md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container .md-bar1 {
65         -webkit-animation-name: none;
66                 animation-name: none; }
67       md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container .md-bar2 {
68         -webkit-animation-name: none;
69                 animation-name: none; }
70   md-progress-linear .md-container.md-mode-buffer {
71     background-color: transparent !important;
72     -webkit-transition: all 0.2s linear;
73     transition: all 0.2s linear; }
74     md-progress-linear .md-container.md-mode-buffer .md-dashed:before {
75       display: block;
76       -webkit-animation: buffer 3s infinite linear;
77               animation: buffer 3s infinite linear; }
78
79 @-webkit-keyframes query {
80   0% {
81     opacity: 1;
82     -webkit-transform: translateX(35%) scale(0.3, 1);
83             transform: translateX(35%) scale(0.3, 1); }
84   100% {
85     opacity: 0;
86     -webkit-transform: translateX(-50%) scale(0, 1);
87             transform: translateX(-50%) scale(0, 1); } }
88
89 @keyframes query {
90   0% {
91     opacity: 1;
92     -webkit-transform: translateX(35%) scale(0.3, 1);
93             transform: translateX(35%) scale(0.3, 1); }
94   100% {
95     opacity: 0;
96     -webkit-transform: translateX(-50%) scale(0, 1);
97             transform: translateX(-50%) scale(0, 1); } }
98
99 @-webkit-keyframes buffer {
100   0% {
101     opacity: 1;
102     background-position: 0px -23px; }
103   50% {
104     opacity: 0; }
105   100% {
106     opacity: 1;
107     background-position: -200px -23px; } }
108
109 @keyframes buffer {
110   0% {
111     opacity: 1;
112     background-position: 0px -23px; }
113   50% {
114     opacity: 0; }
115   100% {
116     opacity: 1;
117     background-position: -200px -23px; } }
118
119 @-webkit-keyframes md-progress-linear-indeterminate-scale-1 {
120   0% {
121     -webkit-transform: scaleX(0.1);
122             transform: scaleX(0.1);
123     -webkit-animation-timing-function: linear;
124             animation-timing-function: linear; }
125   36.6% {
126     -webkit-transform: scaleX(0.1);
127             transform: scaleX(0.1);
128     -webkit-animation-timing-function: cubic-bezier(0.33473, 0.12482, 0.78584, 1);
129             animation-timing-function: cubic-bezier(0.33473, 0.12482, 0.78584, 1); }
130   69.15% {
131     -webkit-transform: scaleX(0.83);
132             transform: scaleX(0.83);
133     -webkit-animation-timing-function: cubic-bezier(0.22573, 0, 0.23365, 1.37098);
134             animation-timing-function: cubic-bezier(0.22573, 0, 0.23365, 1.37098); }
135   100% {
136     -webkit-transform: scaleX(0.1);
137             transform: scaleX(0.1); } }
138
139 @keyframes md-progress-linear-indeterminate-scale-1 {
140   0% {
141     -webkit-transform: scaleX(0.1);
142             transform: scaleX(0.1);
143     -webkit-animation-timing-function: linear;
144             animation-timing-function: linear; }
145   36.6% {
146     -webkit-transform: scaleX(0.1);
147             transform: scaleX(0.1);
148     -webkit-animation-timing-function: cubic-bezier(0.33473, 0.12482, 0.78584, 1);
149             animation-timing-function: cubic-bezier(0.33473, 0.12482, 0.78584, 1); }
150   69.15% {
151     -webkit-transform: scaleX(0.83);
152             transform: scaleX(0.83);
153     -webkit-animation-timing-function: cubic-bezier(0.22573, 0, 0.23365, 1.37098);
154             animation-timing-function: cubic-bezier(0.22573, 0, 0.23365, 1.37098); }
155   100% {
156     -webkit-transform: scaleX(0.1);
157             transform: scaleX(0.1); } }
158
159 @-webkit-keyframes md-progress-linear-indeterminate-1 {
160   0% {
161     left: -105.16667%;
162     -webkit-animation-timing-function: linear;
163             animation-timing-function: linear; }
164   20% {
165     left: -105.16667%;
166     -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
167             animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582); }
168   69.15% {
169     left: 21.5%;
170     -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
171             animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635); }
172   100% {
173     left: 95.44444%; } }
174
175 @keyframes md-progress-linear-indeterminate-1 {
176   0% {
177     left: -105.16667%;
178     -webkit-animation-timing-function: linear;
179             animation-timing-function: linear; }
180   20% {
181     left: -105.16667%;
182     -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
183             animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582); }
184   69.15% {
185     left: 21.5%;
186     -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
187             animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635); }
188   100% {
189     left: 95.44444%; } }
190
191 @-webkit-keyframes md-progress-linear-indeterminate-scale-2 {
192   0% {
193     -webkit-transform: scaleX(0.1);
194             transform: scaleX(0.1);
195     -webkit-animation-timing-function: cubic-bezier(0.20503, 0.05705, 0.57661, 0.45397);
196             animation-timing-function: cubic-bezier(0.20503, 0.05705, 0.57661, 0.45397); }
197   19.15% {
198     -webkit-transform: scaleX(0.57);
199             transform: scaleX(0.57);
200     -webkit-animation-timing-function: cubic-bezier(0.15231, 0.19643, 0.64837, 1.00432);
201             animation-timing-function: cubic-bezier(0.15231, 0.19643, 0.64837, 1.00432); }
202   44.15% {
203     -webkit-transform: scaleX(0.91);
204             transform: scaleX(0.91);
205     -webkit-animation-timing-function: cubic-bezier(0.25776, -0.00316, 0.21176, 1.38179);
206             animation-timing-function: cubic-bezier(0.25776, -0.00316, 0.21176, 1.38179); }
207   100% {
208     -webkit-transform: scaleX(0.1);
209             transform: scaleX(0.1); } }
210
211 @keyframes md-progress-linear-indeterminate-scale-2 {
212   0% {
213     -webkit-transform: scaleX(0.1);
214             transform: scaleX(0.1);
215     -webkit-animation-timing-function: cubic-bezier(0.20503, 0.05705, 0.57661, 0.45397);
216             animation-timing-function: cubic-bezier(0.20503, 0.05705, 0.57661, 0.45397); }
217   19.15% {
218     -webkit-transform: scaleX(0.57);
219             transform: scaleX(0.57);
220     -webkit-animation-timing-function: cubic-bezier(0.15231, 0.19643, 0.64837, 1.00432);
221             animation-timing-function: cubic-bezier(0.15231, 0.19643, 0.64837, 1.00432); }
222   44.15% {
223     -webkit-transform: scaleX(0.91);
224             transform: scaleX(0.91);
225     -webkit-animation-timing-function: cubic-bezier(0.25776, -0.00316, 0.21176, 1.38179);
226             animation-timing-function: cubic-bezier(0.25776, -0.00316, 0.21176, 1.38179); }
227   100% {
228     -webkit-transform: scaleX(0.1);
229             transform: scaleX(0.1); } }
230
231 @-webkit-keyframes md-progress-linear-indeterminate-2 {
232   0% {
233     left: -54.88889%;
234     -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40968);
235             animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40968); }
236   25% {
237     left: -17.25%;
238     -webkit-animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73372);
239             animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73372); }
240   48.35% {
241     left: 29.5%;
242     -webkit-animation-timing-function: cubic-bezier(0.4, 0.62703, 0.6, 0.90203);
243             animation-timing-function: cubic-bezier(0.4, 0.62703, 0.6, 0.90203); }
244   100% {
245     left: 117.38889%; } }
246
247 @keyframes md-progress-linear-indeterminate-2 {
248   0% {
249     left: -54.88889%;
250     -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40968);
251             animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40968); }
252   25% {
253     left: -17.25%;
254     -webkit-animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73372);
255             animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73372); }
256   48.35% {
257     left: 29.5%;
258     -webkit-animation-timing-function: cubic-bezier(0.4, 0.62703, 0.6, 0.90203);
259             animation-timing-function: cubic-bezier(0.4, 0.62703, 0.6, 0.90203); }
260   100% {
261     left: 117.38889%; } }