diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-09-14 23:03:43 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-09-14 23:03:43 +0200 |
commit | 315cc0cc1871ab2a6d6c1bb61cf7b9f10511c3a9 (patch) | |
tree | 68cb1b103cc073e0c2ad3de651dfe26c6fe03477 /client/src/app/videos/video-list | |
parent | 3523b64a03d677c2f8df61c121ff4fcb1d9db7f9 (diff) | |
download | PeerTube-315cc0cc1871ab2a6d6c1bb61cf7b9f10511c3a9.tar.gz PeerTube-315cc0cc1871ab2a6d6c1bb61cf7b9f10511c3a9.tar.zst PeerTube-315cc0cc1871ab2a6d6c1bb61cf7b9f10511c3a9.zip |
Add info when server is processing a video at upload
Diffstat (limited to 'client/src/app/videos/video-list')
-rw-r--r-- | client/src/app/videos/video-list/loader.component.scss | 22 | ||||
-rw-r--r-- | client/src/app/videos/video-list/loader.component.ts | 2 |
2 files changed, 1 insertions, 23 deletions
diff --git a/client/src/app/videos/video-list/loader.component.scss b/client/src/app/videos/video-list/loader.component.scss deleted file mode 100644 index 44cf1f9da..000000000 --- a/client/src/app/videos/video-list/loader.component.scss +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | // Thanks https://gist.github.com/alexandrevicenzi/680147013e902a4eaa5d | ||
2 | .glyphicon-refresh-animate { | ||
3 | -animation: spin .7s infinite linear; | ||
4 | -ms-animation: spin .7s infinite linear; | ||
5 | -webkit-animation: spinw .7s infinite linear; | ||
6 | -moz-animation: spinm .7s infinite linear; | ||
7 | } | ||
8 | |||
9 | @keyframes spin { | ||
10 | from { transform: scale(1) rotate(0deg);} | ||
11 | to { transform: scale(1) rotate(360deg);} | ||
12 | } | ||
13 | |||
14 | @-webkit-keyframes spinw { | ||
15 | from { -webkit-transform: rotate(0deg);} | ||
16 | to { -webkit-transform: rotate(360deg);} | ||
17 | } | ||
18 | |||
19 | @-moz-keyframes spinm { | ||
20 | from { -moz-transform: rotate(0deg);} | ||
21 | to { -moz-transform: rotate(360deg);} | ||
22 | } | ||
diff --git a/client/src/app/videos/video-list/loader.component.ts b/client/src/app/videos/video-list/loader.component.ts index e5780e0fa..f37d70c85 100644 --- a/client/src/app/videos/video-list/loader.component.ts +++ b/client/src/app/videos/video-list/loader.component.ts | |||
@@ -2,7 +2,7 @@ import { Component, Input } from '@angular/core' | |||
2 | 2 | ||
3 | @Component({ | 3 | @Component({ |
4 | selector: 'my-loader', | 4 | selector: 'my-loader', |
5 | styleUrls: [ './loader.component.scss' ], | 5 | styleUrls: [ ], |
6 | templateUrl: './loader.component.html' | 6 | templateUrl: './loader.component.html' |
7 | }) | 7 | }) |
8 | 8 | ||