position indent on mobile + fix offset for desktop replies

This commit is contained in:
DokterKaj 2024-10-15 19:27:15 +08:00 committed by GitHub
parent 0fdf57db4d
commit e4e514875d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1438,14 +1438,20 @@ a.search_subreddit:hover {
min-width: 0;
}
.comment_right[open] .comment_indent {
.comment_right[open] > .comment_data > .comment_indent {
position: absolute; /* relative to .comment */
left: 15px;
width: 20px;
left: 15px;
top: 45px;
height: calc(100% - 45px);
}
.replies > .comment > .comment_right[open] > .comment_data > .comment_indent {
left: 20px;
top: 50px;
height: calc(100% - 50px);
}
.comment:has(> .comment_right[open] > .comment_data > .comment_indent:hover) > .comment_left * {
background: var(--highlighted);
}
@ -2053,6 +2059,13 @@ th {
margin-top: -5px;
}
.comment_right[open] > .comment_data > .comment_indent {
width: 12px;
left: 0 !important;
top: 40px !important;
height: calc(100% - 40px) !important;
}
.line {
margin-left: 5px;
}