mirror of https://github.com/Chocobozzz/PeerTube
Responsive player
parent
b9828abe54
commit
a86309b4af
|
@ -156,7 +156,7 @@ const WebTorrentButton = videojsUntyped.extend(Button, {
|
|||
|
||||
div.className = 'vjs-webtorrent'
|
||||
// Hide the stats before we get the info
|
||||
subDiv.style.display = 'none'
|
||||
subDiv.className = 'vjs-webtorrent-hidden'
|
||||
|
||||
this.player_.on('torrentInfo', (event, data) => {
|
||||
const downloadSpeed = bytes(data.downloadSpeed)
|
||||
|
@ -171,7 +171,7 @@ const WebTorrentButton = videojsUntyped.extend(Button, {
|
|||
|
||||
peersNumber.textContent = numPeers
|
||||
|
||||
subDiv.style.display = 'block'
|
||||
subDiv.className = 'vjs-webtorrent-displayed'
|
||||
})
|
||||
|
||||
return div
|
||||
|
|
|
@ -138,6 +138,14 @@ $control-bar-height: 34px;
|
|||
text-align: right;
|
||||
padding-right: 60px;
|
||||
|
||||
.vjs-webtorrent-displayed {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.vjs-webtorrent-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.download-speed-number, .upload-speed-number, .peers-number {
|
||||
font-weight: $font-semibold;
|
||||
}
|
||||
|
@ -303,6 +311,12 @@ $control-bar-height: 34px;
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 450px) {
|
||||
.vjs-webtorrent-displayed {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Thanks: https://projects.lukehaas.me/css-loaders/
|
||||
|
@ -340,3 +354,4 @@ $control-bar-height: 34px;
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue