|
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+.lu-busy{
|
|
|
2
|
+ position:absolute;
|
|
|
3
|
+ top:0px;
|
|
|
4
|
+ left:0px;
|
|
|
5
|
+ right:0px;
|
|
|
6
|
+ bottom:0px;
|
|
|
7
|
+ z-index:1001;
|
|
|
8
|
+}
|
|
|
9
|
+
|
|
|
10
|
+.lu-busy-animation.ng-hide-add,
|
|
|
11
|
+.lu-busy-animation.ng-hide-remove {
|
|
|
12
|
+ -webkit-transition:all .3s ease;
|
|
|
13
|
+ -moz-transition:all .3s ease;
|
|
|
14
|
+ -o-transition:all .3s ease;
|
|
|
15
|
+ transition:all .3s ease;
|
|
|
16
|
+ display:block !important;
|
|
|
17
|
+}
|
|
|
18
|
+.lu-busy-animation.ng-hide-remove {
|
|
|
19
|
+ opacity:0;
|
|
|
20
|
+ -webkit-transform:translate(0px,-40px);
|
|
|
21
|
+ -moz-transform:translate(0px,-40px);
|
|
|
22
|
+ -ms-transform:translate(0px,-40px);
|
|
|
23
|
+ -o-transform:translate(0px,-40px);
|
|
|
24
|
+ transform:translate(0px,-40px);
|
|
|
25
|
+}
|
|
|
26
|
+.lu-busy-animation.ng-hide-remove.ng-hide-remove-active {
|
|
|
27
|
+ opacity:1;
|
|
|
28
|
+ -webkit-transform:translate(0px,0px);
|
|
|
29
|
+ -moz-transform:translate(0px,0px);
|
|
|
30
|
+ -ms-transform:translate(0px,0px);
|
|
|
31
|
+ -o-transform:translate(0px,0px);
|
|
|
32
|
+ transform:translate(0px,0px);
|
|
|
33
|
+}
|
|
|
34
|
+.lu-busy-animation.ng-hide-add {
|
|
|
35
|
+ opacity:1;
|
|
|
36
|
+ -webkit-transform:translate(0px,0px);
|
|
|
37
|
+ -moz-transform:translate(0px,0px);
|
|
|
38
|
+ -ms-transform:translate(0px,0px);
|
|
|
39
|
+ -o-transform:translate(0px,0px);
|
|
|
40
|
+ transform:translate(0px,0px);
|
|
|
41
|
+}
|
|
|
42
|
+.lu-busy-animation.ng-hide-add.ng-hide-add-active {
|
|
|
43
|
+ opacity:0;
|
|
|
44
|
+ -webkit-transform:translate(0px,-40px);
|
|
|
45
|
+ -moz-transform:translate(0px,-40px);
|
|
|
46
|
+ -ms-transform:translate(0px,-40px);
|
|
|
47
|
+ -o-transform:translate(0px,-40px);
|
|
|
48
|
+ transform:translate(0px,-40px);
|
|
|
49
|
+}
|
|
|
50
|
+
|
|
|
51
|
+.lu-busy-backdrop {
|
|
|
52
|
+ background-color:white;
|
|
|
53
|
+ opacity:.7;
|
|
|
54
|
+}
|
|
|
55
|
+
|
|
|
56
|
+.lu-busy-backdrop-animation.ng-hide-add,
|
|
|
57
|
+.lu-busy-backdrop-animation.ng-hide-remove {
|
|
|
58
|
+ -webkit-transition:opacity .3s ease;
|
|
|
59
|
+ -moz-transition:opacity .3s ease;
|
|
|
60
|
+ -o-transition:opacity .3s ease;
|
|
|
61
|
+ transition:opacity .3s ease;
|
|
|
62
|
+ display:block !important;
|
|
|
63
|
+}
|
|
|
64
|
+
|
|
|
65
|
+.lu-busy-backdrop-animation.ng-hide {
|
|
|
66
|
+ opacity:0;
|
|
|
67
|
+}
|
|
|
68
|
+
|
|
|
69
|
+/* All styles below are for the default template. */
|
|
|
70
|
+
|
|
|
71
|
+.lu-busy-default-wrapper {
|
|
|
72
|
+ text-align:center;
|
|
|
73
|
+}
|
|
|
74
|
+
|
|
|
75
|
+.lu-busy-default-sign{
|
|
|
76
|
+ display: inline-block;
|
|
|
77
|
+ position:relative;
|
|
|
78
|
+ z-index:1002;
|
|
|
79
|
+ padding-bottom: 6px;
|
|
|
80
|
+ color:#333333;
|
|
|
81
|
+ text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);
|
|
|
82
|
+ background-color:#e9eeee;
|
|
|
83
|
+ border:1px solid #dddddd;
|
|
|
84
|
+ border-top-width:0;
|
|
|
85
|
+ -webkit-border-radius:7px;
|
|
|
86
|
+ -moz-border-radius:7px;
|
|
|
87
|
+ border-radius:7px;
|
|
|
88
|
+ border-top-left-radius:0;
|
|
|
89
|
+ border-top-right-radius:0;
|
|
|
90
|
+ -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
|
|
91
|
+ -moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
|
|
92
|
+ box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
|
|
93
|
+}
|
|
|
94
|
+.lu-busy-default-text{
|
|
|
95
|
+ margin:13px 12px 6px 49px;
|
|
|
96
|
+ font-size:16px;
|
|
|
97
|
+ color:#555;
|
|
|
98
|
+ text-align: left;
|
|
|
99
|
+ max-width: 400px;
|
|
|
100
|
+}
|
|
|
101
|
+.lu-busy-default-spinner{
|
|
|
102
|
+ position:absolute;
|
|
|
103
|
+ width:25px;
|
|
|
104
|
+ height:25px;
|
|
|
105
|
+ display:inline-block;
|
|
|
106
|
+ top:12px;
|
|
|
107
|
+ left:14px;
|
|
|
108
|
+}
|
|
|
109
|
+.lu-busy-default-spinner div{
|
|
|
110
|
+ width:12%;
|
|
|
111
|
+ height:26%;
|
|
|
112
|
+ background:#000;
|
|
|
113
|
+ position:absolute;
|
|
|
114
|
+ left:44.5%;
|
|
|
115
|
+ top:37%;
|
|
|
116
|
+ opacity:0;
|
|
|
117
|
+ -webkit-animation:lu-busy-spinner-anim 1s linear infinite;
|
|
|
118
|
+ -moz-animation:lu-busy-spinner-anim 1s linear infinite;
|
|
|
119
|
+ -ms-animation:lu-busy-spinner-anim 1s linear infinite;
|
|
|
120
|
+ -o-animation:lu-busy-spinner-anim 1s linear infinite;
|
|
|
121
|
+ animation:lu-busy-spinner-anim 1s linear infinite;
|
|
|
122
|
+ -webkit-border-radius:50px;
|
|
|
123
|
+ -moz-border-radius:50px;
|
|
|
124
|
+ border-radius:50px;
|
|
|
125
|
+ -webkit-box-shadow:0 0 3px rgba(0,0,0,0.2);
|
|
|
126
|
+ -moz-box-shadow:0 0 3px rgba(0,0,0,0.2);
|
|
|
127
|
+ box-shadow:0 0 3px rgba(0,0,0,0.2);
|
|
|
128
|
+}
|
|
|
129
|
+.lu-busy-default-spinner div.bar1{
|
|
|
130
|
+ -webkit-transform:rotate(0deg) translate(0, -142%);
|
|
|
131
|
+ -moz-transform:rotate(0deg) translate(0, -142%);
|
|
|
132
|
+ -ms-transform:rotate(0deg) translate(0, -142%);
|
|
|
133
|
+ -o-transform:rotate(0deg) translate(0, -142%);
|
|
|
134
|
+ transform:rotate(0deg) translate(0, -142%);
|
|
|
135
|
+ -webkit-animation-delay:0s;
|
|
|
136
|
+ -moz-animation-delay:0s;
|
|
|
137
|
+ -ms-animation-delay:0s;
|
|
|
138
|
+ -o-animation-delay:0s;
|
|
|
139
|
+ animation-delay:0s;
|
|
|
140
|
+}
|
|
|
141
|
+.lu-busy-default-spinner div.bar2{
|
|
|
142
|
+ -webkit-transform:rotate(30deg) translate(0, -142%);
|
|
|
143
|
+ -moz-transform:rotate(30deg) translate(0, -142%);
|
|
|
144
|
+ -ms-transform:rotate(30deg) translate(0, -142%);
|
|
|
145
|
+ -o-transform:rotate(30deg) translate(0, -142%);
|
|
|
146
|
+ transform:rotate(30deg) translate(0, -142%);
|
|
|
147
|
+ -webkit-animation-delay:-0.9167s;
|
|
|
148
|
+ -moz-animation-delay:-0.9167s;
|
|
|
149
|
+ -ms-animation-delay:-0.9167s;
|
|
|
150
|
+ -o-animation-delay:-0.9167s;
|
|
|
151
|
+ animation-delay:-0.9167s;
|
|
|
152
|
+}
|
|
|
153
|
+.lu-busy-default-spinner div.bar3{
|
|
|
154
|
+ -webkit-transform:rotate(60deg) translate(0, -142%);
|
|
|
155
|
+ -moz-transform:rotate(60deg) translate(0, -142%);
|
|
|
156
|
+ -ms-transform:rotate(60deg) translate(0, -142%);
|
|
|
157
|
+ -o-transform:rotate(60deg) translate(0, -142%);
|
|
|
158
|
+ transform:rotate(60deg) translate(0, -142%);
|
|
|
159
|
+ -webkit-animation-delay:-0.833s;
|
|
|
160
|
+ -moz-animation-delay:-0.833s;
|
|
|
161
|
+ -ms-animation-delay:-0.833s;
|
|
|
162
|
+ -o-animation-delay:-0.833s;
|
|
|
163
|
+ animation-delay:-0.833s;
|
|
|
164
|
+}
|
|
|
165
|
+.lu-busy-default-spinner div.bar4{
|
|
|
166
|
+ -webkit-transform:rotate(90deg) translate(0, -142%);
|
|
|
167
|
+ -moz-transform:rotate(90deg) translate(0, -142%);
|
|
|
168
|
+ -ms-transform:rotate(90deg) translate(0, -142%);
|
|
|
169
|
+ -o-transform:rotate(90deg) translate(0, -142%);
|
|
|
170
|
+ transform:rotate(90deg) translate(0, -142%);
|
|
|
171
|
+ -webkit-animation-delay:-0.75s;
|
|
|
172
|
+ -moz-animation-delay:-0.75s;
|
|
|
173
|
+ -ms-animation-delay:-0.75s;
|
|
|
174
|
+ -o-animation-delay:-0.75s;
|
|
|
175
|
+ animation-delay:-0.75s;
|
|
|
176
|
+}
|
|
|
177
|
+.lu-busy-default-spinner div.bar5{
|
|
|
178
|
+ -webkit-transform:rotate(120deg) translate(0, -142%);
|
|
|
179
|
+ -moz-transform:rotate(120deg) translate(0, -142%);
|
|
|
180
|
+ -ms-transform:rotate(120deg) translate(0, -142%);
|
|
|
181
|
+ -o-transform:rotate(120deg) translate(0, -142%);
|
|
|
182
|
+ transform:rotate(120deg) translate(0, -142%);
|
|
|
183
|
+ -webkit-animation-delay:-0.667s;
|
|
|
184
|
+ -moz-animation-delay:-0.667s;
|
|
|
185
|
+ -ms-animation-delay:-0.667s;
|
|
|
186
|
+ -o-animation-delay:-0.667s;
|
|
|
187
|
+ animation-delay:-0.667s;
|
|
|
188
|
+}
|
|
|
189
|
+.lu-busy-default-spinner div.bar6{
|
|
|
190
|
+ -webkit-transform:rotate(150deg) translate(0, -142%);
|
|
|
191
|
+ -moz-transform:rotate(150deg) translate(0, -142%);
|
|
|
192
|
+ -ms-transform:rotate(150deg) translate(0, -142%);
|
|
|
193
|
+ -o-transform:rotate(150deg) translate(0, -142%);
|
|
|
194
|
+ transform:rotate(150deg) translate(0, -142%);
|
|
|
195
|
+ -webkit-animation-delay:-0.5833s;
|
|
|
196
|
+ -moz-animation-delay:-0.5833s;
|
|
|
197
|
+ -ms-animation-delay:-0.5833s;
|
|
|
198
|
+ -o-animation-delay:-0.5833s;
|
|
|
199
|
+ animation-delay:-0.5833s;
|
|
|
200
|
+}
|
|
|
201
|
+.lu-busy-default-spinner div.bar7{
|
|
|
202
|
+ -webkit-transform:rotate(180deg) translate(0, -142%);
|
|
|
203
|
+ -moz-transform:rotate(180deg) translate(0, -142%);
|
|
|
204
|
+ -ms-transform:rotate(180deg) translate(0, -142%);
|
|
|
205
|
+ -o-transform:rotate(180deg) translate(0, -142%);
|
|
|
206
|
+ transform:rotate(180deg) translate(0, -142%);
|
|
|
207
|
+ -webkit-animation-delay:-0.5s;
|
|
|
208
|
+ -moz-animation-delay:-0.5s;
|
|
|
209
|
+ -ms-animation-delay:-0.5s;
|
|
|
210
|
+ -o-animation-delay:-0.5s;
|
|
|
211
|
+ animation-delay:-0.5s;
|
|
|
212
|
+}
|
|
|
213
|
+.lu-busy-default-spinner div.bar8{
|
|
|
214
|
+ -webkit-transform:rotate(210deg) translate(0, -142%);
|
|
|
215
|
+ -moz-transform:rotate(210deg) translate(0, -142%);
|
|
|
216
|
+ -ms-transform:rotate(210deg) translate(0, -142%);
|
|
|
217
|
+ -o-transform:rotate(210deg) translate(0, -142%);
|
|
|
218
|
+ transform:rotate(210deg) translate(0, -142%);
|
|
|
219
|
+ -webkit-animation-delay:-0.41667s;
|
|
|
220
|
+ -moz-animation-delay:-0.41667s;
|
|
|
221
|
+ -ms-animation-delay:-0.41667s;
|
|
|
222
|
+ -o-animation-delay:-0.41667s;
|
|
|
223
|
+ animation-delay:-0.41667s;
|
|
|
224
|
+}
|
|
|
225
|
+.lu-busy-default-spinner div.bar9{
|
|
|
226
|
+ -webkit-transform:rotate(240deg) translate(0, -142%);
|
|
|
227
|
+ -moz-transform:rotate(240deg) translate(0, -142%);
|
|
|
228
|
+ -ms-transform:rotate(240deg) translate(0, -142%);
|
|
|
229
|
+ -o-transform:rotate(240deg) translate(0, -142%);
|
|
|
230
|
+ transform:rotate(240deg) translate(0, -142%);
|
|
|
231
|
+ -webkit-animation-delay:-0.333s;
|
|
|
232
|
+ -moz-animation-delay:-0.333s;
|
|
|
233
|
+ -ms-animation-delay:-0.333s;
|
|
|
234
|
+ -o-animation-delay:-0.333s;
|
|
|
235
|
+ animation-delay:-0.333s;
|
|
|
236
|
+}
|
|
|
237
|
+.lu-busy-default-spinner div.bar10{
|
|
|
238
|
+ -webkit-transform:rotate(270deg) translate(0, -142%);
|
|
|
239
|
+ -moz-transform:rotate(270deg) translate(0, -142%);
|
|
|
240
|
+ -ms-transform:rotate(270deg) translate(0, -142%);
|
|
|
241
|
+ -o-transform:rotate(270deg) translate(0, -142%);
|
|
|
242
|
+ transform:rotate(270deg) translate(0, -142%);
|
|
|
243
|
+ -webkit-animation-delay:-0.25s;
|
|
|
244
|
+ -moz-animation-delay:-0.25s;
|
|
|
245
|
+ -ms-animation-delay:-0.25s;
|
|
|
246
|
+ -o-animation-delay:-0.25s;
|
|
|
247
|
+ animation-delay:-0.25s;
|
|
|
248
|
+}
|
|
|
249
|
+.lu-busy-default-spinner div.bar11{
|
|
|
250
|
+ -webkit-transform:rotate(300deg) translate(0, -142%);
|
|
|
251
|
+ -moz-transform:rotate(300deg) translate(0, -142%);
|
|
|
252
|
+ -ms-transform:rotate(300deg) translate(0, -142%);
|
|
|
253
|
+ -o-transform:rotate(300deg) translate(0, -142%);
|
|
|
254
|
+ transform:rotate(300deg) translate(0, -142%);
|
|
|
255
|
+ -webkit-animation-delay:-0.1667s;
|
|
|
256
|
+ -moz-animation-delay:-0.1667s;
|
|
|
257
|
+ -ms-animation-delay:-0.1667s;
|
|
|
258
|
+ -o-animation-delay:-0.1667s;
|
|
|
259
|
+ animation-delay:-0.1667s;
|
|
|
260
|
+}
|
|
|
261
|
+.lu-busy-default-spinner div.bar12{
|
|
|
262
|
+ -webkit-transform:rotate(330deg) translate(0, -142%);
|
|
|
263
|
+ -moz-transform:rotate(330deg) translate(0, -142%);
|
|
|
264
|
+ -ms-transform:rotate(330deg) translate(0, -142%);
|
|
|
265
|
+ -o-transform:rotate(330deg) translate(0, -142%);
|
|
|
266
|
+ transform:rotate(330deg) translate(0, -142%);
|
|
|
267
|
+ -webkit-animation-delay:-0.0833s;
|
|
|
268
|
+ -moz-animation-delay:-0.0833s;
|
|
|
269
|
+ -ms-animation-delay:-0.0833s;
|
|
|
270
|
+ -o-animation-delay:-0.0833s;
|
|
|
271
|
+ animation-delay:-0.0833s;
|
|
|
272
|
+}
|
|
|
273
|
+
|
|
|
274
|
+@-webkit-keyframes lu-busy-spinner-anim{
|
|
|
275
|
+ from {opacity: 1;}
|
|
|
276
|
+ to {opacity: 0.25;}
|
|
|
277
|
+}
|
|
|
278
|
+@-moz-keyframes lu-busy-spinner-anim{
|
|
|
279
|
+ from {opacity: 1;}
|
|
|
280
|
+ to {opacity: 0.25;}
|
|
|
281
|
+}
|
|
|
282
|
+@keyframes lu-busy-spinner-anim{
|
|
|
283
|
+ from {opacity: 1;}
|
|
|
284
|
+ to {opacity: 0.25;}
|
|
|
285
|
+}
|