aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/watch.html
diff options
context:
space:
mode:
authorzrose584 <57181548+zrose584@users.noreply.github.com>2020-10-07 19:03:22 +0200
committerzrose584 <57181548+zrose584@users.noreply.github.com>2020-10-07 20:32:57 +0200
commitdebc11931fe1102f17852fd082d0dac50d477ce9 (patch)
treea0d13036eaf138e3dbfa94942b305fd8534d5361 /youtube/templates/watch.html
parent9123d9a6cfa2af511b17591541ab2e67aa83475f (diff)
downloadyt-local-debc11931fe1102f17852fd082d0dac50d477ce9.tar.lz
yt-local-debc11931fe1102f17852fd082d0dac50d477ce9.tar.xz
yt-local-debc11931fe1102f17852fd082d0dac50d477ce9.zip
add comments.js
Diffstat (limited to 'youtube/templates/watch.html')
-rw-r--r--youtube/templates/watch.html18
1 files changed, 17 insertions, 1 deletions
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html
index 89f8daa..8835a69 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,21 @@
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;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #0402025e;
+ }
+
.playability-error{
height: 360px;
width: 640px;
@@ -682,4 +697,5 @@ Reload without invidious (for usage of new identity button).</a>
<script src="/youtube.com/static/js/hotkeys.js"></script>
{% endif %}
<script src="/youtube.com/static/js/transcript-table.js"></script>
+ <script src="/youtube.com/static/js/comments.js"></script>
{% endblock main %}