Layout: add option to hide comments/related vids by default but click to show using <details>

This commit is contained in:
James Taylor 2019-08-24 16:45:01 -07:00
parent 943e1cd751
commit cb5f36581d
3 changed files with 71 additions and 52 deletions

View File

@ -102,6 +102,7 @@ body{
main{
flex-grow: 1;
padding-bottom: 20px;
}

View File

@ -3,19 +3,29 @@
{% import "common_elements.html" as common_elements %}
{% import "comments.html" as comments %}
{% block style %}
details > summary{
background-color: #dadada;
border-style: outset;
border-width: 2px;
font-weight: bold;
padding-bottom: 2px;
}
details > summary:hover{
text-decoration: underline;
}
{% if theater_mode %}
video{
grid-column: 1 / span 5;
width: 100%;
max-height: {{ video_height }}px;
margin-bottom: 10px;
}
#related{
margin-top: 10px;
.related-videos-outer{
grid-row: 2 /span 3;
width: 400px;
}
.video-info{
margin-top: 10px;
width: 640px;
}
{% else %}
@ -24,7 +34,7 @@
width: 640px;
grid-column: 2;
}
#related{
.related-videos-outer{
grid-row: 1 /span 4;
}
{% endif %}
@ -112,20 +122,26 @@
font-weight:bold;
margin-bottom:5px;
}
.comments-area{
.comments-area-outer{
grid-column: 2;
grid-row: 3;
padding-top:10px;
margin-top:10px;
}
.comments-area-inner{
padding-top: 10px;
}
.comment{
width:640px;
}
#related{
.related-videos-outer{
grid-column: 4;
max-width: 640px;
}
.related-videos-inner{
padding-top: 10px;
display: grid;
grid-auto-rows: 94px;
grid-row-gap: 10px;
max-width: 640px;
}
/* Put related vids below videos when window is too small */
@ -134,28 +150,17 @@
main{
grid-template-columns: 1fr 640px 40px 1fr;
}
#related{
.related-videos-outer{
margin-top: 10px;
grid-column: 2;
grid-row: 3;
width: initial;
}
.comments-area{
.comments-area-outer{
grid-row: 4;
}
}
.download-dropdown-label{
background-color: #dadada;
border-style: outset;
border-width: 2px;
font-weight: bold;
padding-bottom: 2px;
}
.download-dropdown-label:hover{
text-decoration: underline;
}
.download-dropdown-content{
background-color: #dadada;
padding: 10px;
@ -253,15 +258,25 @@
</div>
</div>
<nav id="related">
{% if related_videos_mode != 0 %}
<details class="related-videos-outer" {{'open' if related_videos_mode == 1 else ''}}>
<summary>Related Videos</summary>
<nav class="related-videos-inner">
{% for info in related %}
{{ common_elements.item(info) }}
{% endfor %}
</nav>
</details>
{% endif %}
<section class="comments-area">
{% if comments_mode != 0 %}
<details class="comments-area-outer" {{'open' if comments_mode == 1 else ''}}>
<summary>Comments</summary>
<section class="comments-area-inner comments-area">
{% if comments_info %}
{{ comments.video_comments(comments_info) }}
{% endif %}
</section>
</details>
{% endif %}
{% endblock main %}

View File

@ -217,6 +217,9 @@ def get_watch_page():
comments_info = comments_info,
theater_mode = settings.theater_mode,
related_videos_mode = settings.related_videos_mode,
comments_mode = settings.comments_mode,
video_height = video_height,
title = info['title'],