summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/modules/custom-post-types/comics/comics-rtl.css')
-rw-r--r--plugins/jetpack/modules/custom-post-types/comics/comics-rtl.css29
1 files changed, 26 insertions, 3 deletions
diff --git a/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.css b/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.css
index 7662d7e5..bcf00642 100644
--- a/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.css
+++ b/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.css
@@ -9,9 +9,32 @@ body.dragging #jetpack-comic-drop-zone .dragging, body.uploading #jetpack-comic-
display: block;
}
-body.uploading #jetpack-comic-drop-zone .uploading .spinner {
- display: inline-block;
+body.uploading #jetpack-comic-drop-zone .uploading .spinner,
+body.uploading #jetpack-comic-drop-zone .uploading .spinner:after {
+ border-radius: 50%;
width: 60px;
+ height: 60px;
+}
+body.uploading #jetpack-comic-drop-zone .uploading .spinner {
+ display: block;
+ margin: 15px auto;
+ font-size: 10px;
+ position: relative;
+ text-indent: -9999em;
+ border-top: 1.1em solid rgba(255, 255, 255, 0.2);
+ border-left: 1.1em solid rgba(255, 255, 255, 0.2);
+ border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
+ border-right: 1.1em solid #ffffff;
+ transform: translateZ(0);
+ animation: load8 1.1s infinite linear;
+}
+@keyframes load8 {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(-360deg);
+ }
}
/* Add the drop zone overlay. */
@@ -28,4 +51,4 @@ body.dragging #jetpack-comic-drop-zone, body.uploading #jetpack-comic-drop-zone
bottom: 10px;
text-align: center;
z-index: 99999;
-} \ No newline at end of file
+}