_loaders.scss
2.8 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/***
UI Loading
***/
.loading-message {
display: inline-block;
min-width: 125px;
margin-left: -60px;
padding: 10px;
margin: 0 auto;
color: #000 !important;
font-size: 13px;
font-weight: 400;
text-align: center;
vertical-align: middle;
&.loading-message-boxed {
border: 1px solid #ddd;
background-color: #eee;
@include border-radius($general-border-radius);
-webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}
> span {
line-height:20px;
vertical-align: middle;
}
}
.page-loading {
@include border-radius($general-border-radius);
position: fixed;
top: 50%;
left: 50%;
min-width: 125px;
margin-left: -60px;
margin-top: -30px;
padding: 7px;
text-align: center;
color: #333;
font-size: 13px;
border: 1px solid #ddd;
background-color: #eee;
vertical-align: middle;
-webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
> span {
line-height:20px;
vertical-align: middle;
}
}
.page-spinner-bar {
position: fixed;
z-index: $zindex-modal + 1;
width: 100px;
top: 40%;
left: 50%;
margin-left: -55px;
text-align: center;
> div {
margin: 0 5px;
width: 18px;
height: 18px;
background: #eee;
border-radius: 100% !important;
display: inline-block;
-webkit-animation: bounceDelay 1.4s infinite ease-in-out;
animation: bounceDelay 1.4s infinite ease-in-out;
/* Prevent first frame from flickering when animation starts */
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
}
.block-spinner-bar {
display: inline-block;
width: 80px;
text-align: center;
> div {
margin: 0 2px;
width: 15px;
height: 15px;
background: #eee;
border-radius: 100% !important;
display: inline-block;
-webkit-animation: bounceDelay 1.4s infinite ease-in-out;
animation: bounceDelay 1.4s infinite ease-in-out;
/* Prevent first frame from flickering when animation starts */
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
}