aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/static
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2019-09-15 14:55:57 -0700
committerJames Taylor <user234683@users.noreply.github.com>2019-09-15 14:55:57 -0700
commit57c37a57e9c65b16ac4a9bafc4ce45b7dd82ac26 (patch)
tree5b9e69243f7742d0e202d4f27e0382bf5eda5e78 /youtube/static
parentf48de1aad2a3aafd6ed5a721813d629429da3425 (diff)
downloadyt-local-57c37a57e9c65b16ac4a9bafc4ce45b7dd82ac26.tar.lz
yt-local-57c37a57e9c65b16ac4a9bafc4ce45b7dd82ac26.tar.xz
yt-local-57c37a57e9c65b16ac4a9bafc4ce45b7dd82ac26.zip
Add optional javascript for adding videos to playlists without the browser cancelling loading of the video, and to display a status message
Diffstat (limited to 'youtube/static')
-rw-r--r--youtube/static/shared.css12
1 files changed, 12 insertions, 0 deletions
diff --git a/youtube/static/shared.css b/youtube/static/shared.css
index 72d290a..3ce7d4a 100644
--- a/youtube/static/shared.css
+++ b/youtube/static/shared.css
@@ -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{