-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathngHelperBusy.css
More file actions
107 lines (99 loc) · 2.48 KB
/
ngHelperBusy.css
File metadata and controls
107 lines (99 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
div#ngHelperBusyLayer {
display: none;
background-color: white;
filter: alpha(opacity=50); /* IE */
opacity: 0.5; /* Safari, Opera */
-moz-opacity: 0.50; /* FireFox */
z-index: 20;
height: 100%;
width: 100%;
background-repeat: no-repeat;
background-position: center;
position: absolute;
top: 0;
left: 0;
}
div#ngHelperBusyLayer.busy {
display: block;
}
div#ngHelperBusyLayer .wrapper {
position: relative;
top: 25%;
margin-left: auto;
margin-right: auto;
width: 11em;
height: 11em;
}
body.ngHelperBusyLayerNoScroll {
overflow: hidden;
}
.message {
position: relative;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
text-align: center;
color: #000000;
}
.loader {
position: relative;
font-size: 10px;
margin: 0;
margin-left: auto;
margin-right: auto;
text-indent: -9999em;
width: 11em;
height: 11em;
border-radius: 50%;
background: lightgray;
background: -moz-linear-gradient(left, lightgray 10%, rgba(255, 255, 255, 0) 42%);
background: -webkit-linear-gradient(left, lightgray 10%, rgba(255, 255, 255, 0) 42%);
background: -o-linear-gradient(left, lightgray 10%, rgba(255, 255, 255, 0) 42%);
background: -ms-linear-gradient(left, lightgray 10%, rgba(255, 255, 255, 0) 42%);
background: linear-gradient(to right, lightgray 10%, rgba(255, 255, 255, 0) 42%);
-webkit-animation: load3 1.4s infinite linear;
animation: load3 1.4s infinite linear;
}
.loader:before {
width: 50%;
height: 50%;
background: lightgray;
border-radius: 100% 0 0 0;
position: absolute;
top: 0;
left: 0;
content: '';
}
.loader:after {
background: #ffffff;
width: 75%;
height: 75%;
border-radius: 50%;
content: '';
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
@-webkit-keyframes load3 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load3 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}