]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Change video spinner
authorChocobozzz <florian.bigard@gmail.com>
Tue, 31 Oct 2017 07:41:46 +0000 (08:41 +0100)
committerChocobozzz <florian.bigard@gmail.com>
Tue, 31 Oct 2017 07:41:46 +0000 (08:41 +0100)
client/src/sass/video-js-custom.scss

index 4e3aceaab97c56201ec22e7022fa748477279682..c5f668f1784f2c7e02d47269f258bd0ffbcbb07b 100644 (file)
@@ -331,3 +331,75 @@ $slider-bg-color: lighten($primary-background-color, 33%);
     width: 3em;
     height: auto;
 }
+
+// Thanks: https://projects.lukehaas.me/css-loaders/
+.vjs-loading-spinner {
+  border: none;
+  opacity: 1;
+  font-size: 10px;
+  text-indent: -9999em;
+  width: 5em;
+  height: 5em;
+  border-radius: 50%;
+  background: #ffffff;
+  background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
+  background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
+  background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
+  background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
+  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
+  position: relative;
+  -webkit-animation: load3 1.4s infinite linear;
+  animation: load3 1.4s infinite linear;
+  -webkit-transform: translateZ(0);
+  -ms-transform: translateZ(0);
+  transform: translateZ(0);
+
+  &:before {
+    width: 50%;
+    height: 50%;
+    background: #ffffff;
+    border-radius: 100% 0 0 0;
+    position: absolute;
+    top: 0;
+    left: 0;
+    content: '';
+    animation: none !important;
+    margin: 0 !important;
+  }
+
+  &:after {
+    background: #000;
+    width: 75%;
+    height: 75%;
+    border-radius: 50%;
+    content: '';
+    margin: auto;
+    position: absolute;
+    top: 0;
+    left: 0;
+    bottom: 0;
+    right: 0;
+    animation: none !important;
+  }
+
+  @-webkit-keyframes load3 {
+    0% {
+      -webkit-transform: rotate(0deg);
+      transform: rotate(0deg);
+    }
+    100% {
+      -webkit-transform: rotate(360deg);
+      transform: rotate(360deg);
+    }
+  }
+  @keyframes load3 {
+    0% {
+      -webkit-transform: rotate(0deg);
+      transform: rotate(0deg);
+    }
+    100% {
+      -webkit-transform: rotate(360deg);
+      transform: rotate(360deg);
+    }
+  }
+}