1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-08-05 00:37:02 +00:00

Receivers: Add playlist next/previous buttons and metadata for audio files

This commit is contained in:
Michael Hollister 2025-06-16 15:17:16 -05:00
parent 782a01f4e9
commit 56e10760b8
8 changed files with 151 additions and 32 deletions

View file

@ -66,6 +66,17 @@ body {
background-color: black;
}
#thumbnailImage {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
object-fit: contain;
width: 100%;
height: 100%;
}
#videoPlayer {
object-fit: contain;
width: 100%;
@ -331,6 +342,30 @@ body {
background-image: url("../assets/icons/player/icon24_pause_active.svg");
}
.playPrevious {
cursor: pointer;
flex-shrink: 0;
background-image: url("../assets/icons/player/icon24_play_previous.svg");
transition: background-image 0.1s ease-in-out;
}
.playPrevious:hover {
background-image: url("../assets/icons/player/icon24_play_previous_active.svg");
}
.playNext {
cursor: pointer;
flex-shrink: 0;
background-image: url("../assets/icons/player/icon24_play_next.svg");
transition: background-image 0.1s ease-in-out;
}
.playNext:hover {
background-image: url("../assets/icons/player/icon24_play_next_active.svg");
}
.volume_high {
cursor: pointer;
flex-shrink: 0;