blob: 5d5f67e95001fedef21fd7a0dc97311fb9dd4a0c (
plain)
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
|
.scanning-msg {
margin-left: 50px;
}
.spinner {
width: 32px;
height: 32px;
float: left;
background-position: 50% 50%;
background-repeat: no-repeat;
background-image: -webkit-canvas(spinner-circle);
-webkit-animation-name: spin;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
.content-area {
height: 120px;
overflow: auto;
}
.disabled {
opacity: 0.7;
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
|