diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-09-09 16:08:24 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-09-09 20:40:38 -0700 |
commit | 652cef15ec7d2e5deb2a1d14c784421260f70305 (patch) | |
tree | 44079ee2ef63dd991a0bcb03dbadc83956cfc9c0 /youtube/static | |
parent | 1b6fb4e100a2aed8c9c391e100fbbe60ac74d352 (diff) | |
download | yt-local-652cef15ec7d2e5deb2a1d14c784421260f70305.tar.lz yt-local-652cef15ec7d2e5deb2a1d14c784421260f70305.tar.xz yt-local-652cef15ec7d2e5deb2a1d14c784421260f70305.zip |
Watch page: Background color on video when scrubbing bar larger than video
Diffstat (limited to 'youtube/static')
-rw-r--r-- | youtube/static/dark_theme.css | 1 | ||||
-rw-r--r-- | youtube/static/gray_theme.css | 1 | ||||
-rw-r--r-- | youtube/static/light_theme.css | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/youtube/static/dark_theme.css b/youtube/static/dark_theme.css index 7389aa5..221dc95 100644 --- a/youtube/static/dark_theme.css +++ b/youtube/static/dark_theme.css @@ -2,6 +2,7 @@ body{ --interface-color: #333333; --text-color: #cccccc; --background-color: #000000; + --video-background-color: #080808; } a:link { diff --git a/youtube/static/gray_theme.css b/youtube/static/gray_theme.css index a5f3b23..ca699c7 100644 --- a/youtube/static/gray_theme.css +++ b/youtube/static/gray_theme.css @@ -2,6 +2,7 @@ body{ --interface-color: #dadada; --text-color: #222222; --background-color: #bcbcbc; + --video-background-color: #dadada; } .comment .permalink{ diff --git a/youtube/static/light_theme.css b/youtube/static/light_theme.css index 9e37449..e4d7eb3 100644 --- a/youtube/static/light_theme.css +++ b/youtube/static/light_theme.css @@ -2,6 +2,7 @@ body{ --interface-color: #ffffff; --text-color: #222222; --background-color: #f8f8f8; + --video-background-color: #ffffff; } .comment .permalink{ |