PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 12.1.3
Jetpack – WP Security, Backup, Speed, & Growth v12.1.3
12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 14.4.2 All 500 releases
jetpack / modules / custom-post-types / comics / comics-rtl.css
comics-rtl.css
54 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 #jetpack-comic-drop-zone .dragging, #jetpack-comic-drop-zone .uploading {
2 margin-top: 200px;
3 display: none;
4 }
5
6 /* Display the appropriate loading message for each upload state. */
7 body.dragging #jetpack-comic-drop-zone .dragging, body.uploading #jetpack-comic-drop-zone .uploading {
8 display: block;
9 }
10
11 body.uploading #jetpack-comic-drop-zone .uploading .spinner,
12 body.uploading #jetpack-comic-drop-zone .uploading .spinner:after {
13 border-radius: 50%;
14 width: 60px;
15 height: 60px;
16 }
17
18 body.uploading #jetpack-comic-drop-zone .uploading .spinner {
19 display: block;
20 margin: 15px auto;
21 font-size: 10px;
22 position: relative;
23 text-indent: -9999em;
24 border-top: 1.1em solid rgba(255, 255, 255, 0.2);
25 border-left: 1.1em solid rgba(255, 255, 255, 0.2);
26 border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
27 border-right: 1.1em solid #ffffff;
28 transform: translateZ(0);
29 animation: load8 1.1s infinite linear;
30 }
31 @keyframes load8 {
32 0% {
33 transform: rotate(0deg);
34 }
35 100% {
36 transform: rotate(-360deg);
37 }
38 }
39 /* Add the drop zone overlay. */
40 body.dragging #jetpack-comic-drop-zone, body.uploading #jetpack-comic-drop-zone {
41 background: rgba(0, 86, 132, 0.9);
42 border: 1px dashed #fff;
43 color: #fff;
44 display: block;
45 font-size: 30px;
46 position: fixed;
47 top: 10px;
48 right: 10px;
49 left: 10px;
50 bottom: 10px;
51 text-align: center;
52 z-index: 99999;
53 }
54