mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
made playback progress bar wider on larger screens
This commit is contained in:
parent
4bd529a78a
commit
a276d5521c
2 changed files with 50 additions and 30 deletions
|
@ -989,6 +989,16 @@ input[type="range"]::-ms-fill-upper {
|
|||
display: inline-block;
|
||||
}
|
||||
|
||||
@media (min-width: 750px) {
|
||||
.installedPluginTitle {
|
||||
max-width: 110px;
|
||||
}
|
||||
|
||||
.itemVideo:not(.fullscreenVideo) {
|
||||
width: 320px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.installedPluginTitle {
|
||||
max-width: 110px;
|
||||
|
@ -1007,6 +1017,14 @@ input[type="range"]::-ms-fill-upper {
|
|||
.itemVideo:not(.fullscreenVideo) {
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.positionSlider {
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.itemVideo {
|
||||
left: -560px;
|
||||
}
|
||||
}
|
||||
|
||||
#editItemMetadataPage #txtOverview {
|
||||
|
|
|
@ -996,11 +996,13 @@
|
|||
var newIndex = currentPlaylistIndex + 1;
|
||||
var newItem = self.playlist[newIndex];
|
||||
|
||||
if (newItem) {
|
||||
Dashboard.getCurrentUser().done(function (user) {
|
||||
|
||||
self.playInternal(newItem, 0, user);
|
||||
currentPlaylistIndex = newIndex;
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
self.queueItem = function (item) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue