PluginProbe
Advanced Ads – Ad Manager & AdSense / 2.0.21
Advanced Ads – Ad Manager & AdSense v2.0.21
2.0.26 2.0.25 2.0.24 2.0.23 2.0.22 2.0.21 1.38.0 1.39.0 1.39.1 1.39.2 1.39.3 1.39.4 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.40.0 1.40.1 1.40.2 All 348 releases
advanced-ads / src / admin / screen-dashboard / spinner.css
spinner.css
57 lines 680 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .lds-ripple {
2 display: none;
3 position: relative;
4 width: 40px;
5 height: 40px;
6
7 &.show {
8 display: inline-block;
9 }
10 }
11
12 .lds-ripple div {
13 position: absolute;
14 border: 4px solid #ccc;
15 opacity: 1;
16 border-radius: 50%;
17 animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
18 }
19
20 .lds-ripple div:nth-child(2) {
21 animation-delay: -0.5s;
22 }
23
24 @keyframes lds-ripple {
25 0% {
26 top: 20px;
27 left: 20px;
28 width: 0;
29 height: 0;
30 opacity: 0;
31 }
32
33 4.9% {
34 top: 20px;
35 left: 20px;
36 width: 0;
37 height: 0;
38 opacity: 0;
39 }
40
41 5% {
42 top: 20px;
43 left: 20px;
44 width: 0;
45 height: 0;
46 opacity: 1;
47 }
48
49 100% {
50 top: 0;
51 left: 0;
52 width: 40px;
53 height: 40px;
54 opacity: 0;
55 }
56 }
57