-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlockUI.css
More file actions
85 lines (75 loc) · 1.4 KB
/
Copy pathBlockUI.css
File metadata and controls
85 lines (75 loc) · 1.4 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
.loading-indicator {
text-align: center;
}
.block-ui {
position: relative;
min-height: 3em;
}
.block-ui-container {
position: absolute;
z-index: 1010;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 2375px;
width: 100%;
min-height: 2em;
cursor: wait;
overflow: hidden;
}
.block-ui-container:focus {
outline: none;
}
.block-ui-overlay {
width: 100%;
height: 2375px;
opacity: 0.75;
filter: alpha(opacity=50);
background-color: rgb(184, 184, 184);
}
.block-ui-message-container {
position: absolute;
top: 50%;
left: 0;
right: 0;
text-align: center;
transform: translateY(-50%);
z-index: 10001;
}
.block-ui-message {
color: #333;
background: none;
z-index: 1011;
}
#indicator {
width: 100px;
height: 100px;
position: absolute;
top: calc(50% - 50px);
left: calc(50% - 50px);
animation: spin 1s linear infinite;
}
#circle {
fill: none;
stroke: rgba(255, 255, 255, 0.5);
stroke-linecap: round;
stroke-width: 4;
animation: draw 3s ease-in-out infinite;
}
@keyframes draw {
0% {
stroke-dasharray: 20, 282.6;
}
50% {
stroke-dasharray: 200, 282.6;
}
100% {
stroke-dasharray: 20, 282.6;
}
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}