diff options
author | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-09-11 21:27:11 +0200 |
---|---|---|
committer | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-09-11 21:28:29 +0200 |
commit | 05a7907be4648a7ddaf6c036ad401cac6e10da9f (patch) | |
tree | c7cb580025ca2be296e2f7c2b10abfa5511de2d5 /youtube/templates | |
parent | 94ece08a1e04d9ba1f62000b04c7b7ca707c6ab6 (diff) | |
download | yt-local-05a7907be4648a7ddaf6c036ad401cac6e10da9f.tar.lz yt-local-05a7907be4648a7ddaf6c036ad401cac6e10da9f.tar.xz yt-local-05a7907be4648a7ddaf6c036ad401cac6e10da9f.zip |
add transcript-table.js
Diffstat (limited to 'youtube/templates')
-rw-r--r-- | youtube/templates/watch.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html index b3847d5..13e0620 100644 --- a/youtube/templates/watch.html +++ b/youtube/templates/watch.html @@ -305,6 +305,14 @@ .format-codecs{ width: 120px; } + + table#transcript-table { + border-collapse: collapse; + width: 100%; + } + table#transcript-table td, th { + border: 1px solid #dddddd; + } {% endblock style %} {% block main %} @@ -613,4 +621,5 @@ Reload without invidious (for usage of new identity button).</a> {% if settings.use_video_hotkeys %} <script src="/youtube.com/static/js/hotkeys.js"></script> {% endif %} + <script src="/youtube.com/static/js/transcript-table.js"></script> {% endblock main %} |