aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/watch.html
diff options
context:
space:
mode:
authorJames Taylor <28744867+user234683@users.noreply.github.com>2020-10-11 18:52:34 -0700
committerGitHub <noreply@github.com>2020-10-11 18:52:34 -0700
commit2cfc6dec39ccdcc0c5fe2eea73f47b7040e51833 (patch)
tree7bad2fcf78184195bab8472acace235377ef7eed /youtube/templates/watch.html
parente182cf82839c7de137b05ba347fed7767d554020 (diff)
parent643a0e8659b7358bb2c06cc707e36b82b949c912 (diff)
downloadyt-local-2cfc6dec39ccdcc0c5fe2eea73f47b7040e51833.tar.lz
yt-local-2cfc6dec39ccdcc0c5fe2eea73f47b7040e51833.tar.xz
yt-local-2cfc6dec39ccdcc0c5fe2eea73f47b7040e51833.zip
Merge pull request #23 from zrose584/comments_js
add comments.js for comment replies
Diffstat (limited to 'youtube/templates/watch.html')
-rw-r--r--youtube/templates/watch.html19
1 files changed, 17 insertions, 2 deletions
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html
index 89f8daa..86644ea 100644
--- a/youtube/templates/watch.html
+++ b/youtube/templates/watch.html
@@ -1,7 +1,7 @@
{% set page_title = title %}
{% extends "base.html" %}
{% import "common_elements.html" as common_elements %}
-{% import "comments.html" as comments %}
+{% import "comments.html" as comments with context %}
{% block style %}
details > summary{
background-color: var(--interface-color);
@@ -14,6 +14,18 @@
text-decoration: underline;
}
+ details.replies > summary{
+ background-color: var(--interface-color);
+ border-style: outset;
+ border-width: 1px;
+ font-weight: bold;
+ padding-bottom: 0px;
+ }
+
+ details.replies .comment{
+ width: 600px;
+ }
+
.playability-error{
height: 360px;
width: 640px;
@@ -678,8 +690,11 @@ Reload without invidious (for usage of new identity button).</a>
{% endif %}
<script src="/youtube.com/static/js/common.js"></script>
+ <script src="/youtube.com/static/js/transcript-table.js"></script>
{% 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>
+ {% if settings.use_comments_js %}
+ <script src="/youtube.com/static/js/comments.js"></script>
+ {% endif %}
{% endblock main %}