Continued work on media scheduler

This commit is contained in:
rainbow napkin 2025-01-28 09:43:39 -05:00
parent 9d01b4c962
commit d5a2a51be2
14 changed files with 415 additions and 54 deletions

View file

@ -20,6 +20,29 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.*/
height: 100%;
}
#queue-controls{
position: absolute;
left: 0;
right: 0;
z-index: 3;
}
#queue-control-offset{
margin-bottom: 2em;
}
#queue-control-buttons{
height: 2em;
display: flex;
flex-direction: row;
justify-content: space-between;
}
#queue-control-buttons button{
width: 4em;
}
#queue{
display: flex;
flex: 1;
@ -58,6 +81,7 @@ div.queue-entry{
margin: 0 1em;
right: 0;
left: 0;
cursor:grab;
}
div.queue-entry a{
@ -79,4 +103,8 @@ div.queue-entry a{
right: 0;
text-align: center;
font-size: 3em;
}
.media-tooltip p{
margin: 0;
}