diff options
Diffstat (limited to 'client/angular/videos/components')
-rw-r--r-- | client/angular/videos/components/watch/videos-watch.component.html | 6 | ||||
-rw-r--r-- | client/angular/videos/components/watch/videos-watch.component.scss | 12 |
2 files changed, 14 insertions, 4 deletions
diff --git a/client/angular/videos/components/watch/videos-watch.component.html b/client/angular/videos/components/watch/videos-watch.component.html index f2a50eccd..9e8f50908 100644 --- a/client/angular/videos/components/watch/videos-watch.component.html +++ b/client/angular/videos/components/watch/videos-watch.component.html | |||
@@ -7,7 +7,7 @@ | |||
7 | </div> | 7 | </div> |
8 | 8 | ||
9 | <div id="torrent-info"> | 9 | <div id="torrent-info"> |
10 | <div>Download: {{ downloadSpeed | bytes }}/s</div> | 10 | <div id="torrent-info-download">Download: {{ downloadSpeed | bytes }}/s</div> |
11 | <div>Upload: {{ uploadSpeed | bytes }}/s</div> | 11 | <div id="torrent-info-upload">Upload: {{ uploadSpeed | bytes }}/s</div> |
12 | <div>Number of peers: {{ numPeers }}</div> | 12 | <div id="torrent-info-peers">Number of peers: {{ numPeers }}</div> |
13 | <div> | 13 | <div> |
diff --git a/client/angular/videos/components/watch/videos-watch.component.scss b/client/angular/videos/components/watch/videos-watch.component.scss index b6c2fc050..62ae8a126 100644 --- a/client/angular/videos/components/watch/videos-watch.component.scss +++ b/client/angular/videos/components/watch/videos-watch.component.scss | |||
@@ -1,5 +1,5 @@ | |||
1 | .embed-responsive { | 1 | .embed-responsive { |
2 | height: 100%; | 2 | height: 500px; |
3 | } | 3 | } |
4 | 4 | ||
5 | #video-loading { | 5 | #video-loading { |
@@ -28,3 +28,13 @@ | |||
28 | from { -moz-transform: rotate(0deg);} | 28 | from { -moz-transform: rotate(0deg);} |
29 | to { -moz-transform: rotate(360deg);} | 29 | to { -moz-transform: rotate(360deg);} |
30 | } | 30 | } |
31 | |||
32 | #torrent-info { | ||
33 | font-size: 10px; | ||
34 | |||
35 | div { | ||
36 | display: inline-block; | ||
37 | width: 33%; | ||
38 | text-align: center; | ||
39 | } | ||
40 | } | ||