mirror of
https://github.com/redlib-org/redlib.git
synced 2025-05-14 05:52:53 +00:00
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:
parent
58ca085521
commit
809be42e01
6 changed files with 46 additions and 11 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue