diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-07-19 16:45:07 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-07-19 16:45:07 +0200 |
commit | a64668c024c84f2b0a01357d05092064f17ffd4e (patch) | |
tree | 14992a54b593d172fb45612ccf2db81ac02218f7 /client/src/app/videos/video-watch | |
parent | f9f5478ca0778d0f64495bb05e19907582326fd1 (diff) | |
download | PeerTube-a64668c024c84f2b0a01357d05092064f17ffd4e.tar.gz PeerTube-a64668c024c84f2b0a01357d05092064f17ffd4e.tar.zst PeerTube-a64668c024c84f2b0a01357d05092064f17ffd4e.zip |
Client: try to make it work with Android Firefox
Diffstat (limited to 'client/src/app/videos/video-watch')
-rw-r--r-- | client/src/app/videos/video-watch/video-watch.component.html | 6 | ||||
-rw-r--r-- | client/src/app/videos/video-watch/video-watch.component.scss | 12 |
2 files changed, 12 insertions, 6 deletions
diff --git a/client/src/app/videos/video-watch/video-watch.component.html b/client/src/app/videos/video-watch/video-watch.component.html index 047990362..ddabdc9e9 100644 --- a/client/src/app/videos/video-watch/video-watch.component.html +++ b/client/src/app/videos/video-watch/video-watch.component.html | |||
@@ -17,7 +17,7 @@ | |||
17 | </div> | 17 | </div> |
18 | 18 | ||
19 | <div id="torrent-info"> | 19 | <div id="torrent-info"> |
20 | <div id="torrent-info-download">Download: {{ downloadSpeed | bytes }}/s</div> | 20 | <div id="torrent-info-download" class="col-md-4 col-sm-4 col-xs-4">Download: {{ downloadSpeed | bytes }}/s</div> |
21 | <div id="torrent-info-upload">Upload: {{ uploadSpeed | bytes }}/s</div> | 21 | <div id="torrent-info-upload" class="col-md-4 col-sm-4 col-xs-4">Upload: {{ uploadSpeed | bytes }}/s</div> |
22 | <div id="torrent-info-peers">Number of peers: {{ numPeers }}</div> | 22 | <div id="torrent-info-peers" class="col-md-4 col-sm-4 col-xs-4">Number of peers: {{ numPeers }}</div> |
23 | <div> | 23 | <div> |
diff --git a/client/src/app/videos/video-watch/video-watch.component.scss b/client/src/app/videos/video-watch/video-watch.component.scss index 474de74d9..96420582a 100644 --- a/client/src/app/videos/video-watch/video-watch.component.scss +++ b/client/src/app/videos/video-watch/video-watch.component.scss | |||
@@ -11,10 +11,16 @@ my-loader { | |||
11 | 11 | ||
12 | #torrent-info { | 12 | #torrent-info { |
13 | font-size: 10px; | 13 | font-size: 10px; |
14 | margin-top: 10px; | ||
15 | text-align: center; | ||
14 | 16 | ||
15 | div { | 17 | div { |
16 | display: inline-block; | 18 | min-width: 60px; |
17 | width: 33%; | 19 | } |
18 | text-align: center; | 20 | } |
21 | |||
22 | .embed-responsive { | ||
23 | @media screen and (max-width: 600px) { | ||
24 | height: 300px; | ||
19 | } | 25 | } |
20 | } | 26 | } |