only set size when comment is open

This commit is contained in:
DokterKaj 2024-10-15 02:49:35 +08:00 committed by GitHub
parent 840907a586
commit 0fdf57db4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1438,6 +1438,18 @@ a.search_subreddit:hover {
min-width: 0;
}
.comment_right[open] .comment_indent {
position: absolute; /* relative to .comment */
left: 15px;
width: 20px;
top: 45px;
height: calc(100% - 45px);
}
.comment:has(> .comment_right[open] > .comment_data > .comment_indent:hover) > .comment_left * {
background: var(--highlighted);
}
.comment:has([id]) .comment_data > * {
margin-right: 5px;
}
@ -1460,18 +1472,6 @@ a.search_subreddit:hover {
flex: 0 1 auto;
}
.comment_indent {
position: absolute; /* relative to .comment */
left: 15px;
width: 20px;
top: 45px;
height: calc(100% - 45px);
}
.comment:has(> .comment_right > .comment_data > .comment_indent:hover) > .comment_left * {
background: var(--highlighted);
}
.comment_image {
max-width: 500px;
align-self: center;