Add "View all comments" and "Show parent comments" buttons when viewing a single thread. Closes #65 (#115)

* Start recursive comments

* Update comment.html

* Fix move error

* Comment improvements

* Fix merge

* Remove extra endif from post.html

* Fix post.html

Co-authored-by: spikecodes <19519553+spikecodes@users.noreply.github.com>
This commit is contained in:
robrobinbin 2021-02-12 18:16:59 +01:00 committed by GitHub
parent 58ca085521
commit 809be42e01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 46 additions and 11 deletions

View file

@ -556,6 +556,12 @@ a.search_subreddit:hover {
word-break: break-word;
}
.thread_nav {
color: var(--accent);
font-weight: bold;
margin: 10px 0;
}
.post {
border-radius: 5px;
background: var(--post);
@ -845,7 +851,12 @@ a.search_subreddit:hover {
.comment_body {
opacity: 0.9;
font-weight: normal;
margin: 10px 5px;
padding: 5px 5px;
margin: 5px 0;
}
.comment_body.highlighted {
background: var(--highlighted);
}
.comment_body > p:not(:first-child) {