Add optional javascript for adding videos to playlists without the browser cancelling loading of the video, and to display a status message

This commit is contained in:
James Taylor
2019-09-15 14:55:57 -07:00
parent f48de1aad2
commit 57c37a57e9
2 changed files with 82 additions and 1 deletions

View File

@@ -107,6 +107,18 @@ body{
flex-grow: 1;
padding-bottom: 20px;
}
#message-box{
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-style: outset;
padding: 20px;
background-color: var(--interface-color);
opacity: 0;
transition-property: opacity;
transition-duration: 0.3s;
}
.dropdown{