This commit is contained in:
DokterKaj 2025-03-23 21:51:14 +01:00 committed by GitHub
commit acc75d0236
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 22 additions and 0 deletions

View file

@ -1446,6 +1446,19 @@ a.search_subreddit:hover {
flex-grow: 1;
flex-shrink: 1;
min-width: 0;
position: relative;
}
.comment_right[open] > .comment_data > .comment_collapse {
position: absolute; /* relative to .comment_right */
width: 20px;
left: -35px;
top: 45px;
height: calc(100% - 45px);
}
.comment:has(> .comment_right[open] > .comment_data > .comment_collapse:hover) > .comment_left * {
background: var(--highlighted);
}
.comment:has([id]) .comment_data > * {
@ -2051,6 +2064,14 @@ th {
margin-top: -5px;
}
.comment_right[open] > .comment_data > .comment_collapse {
/* relative to .comment_right */
width: 15px;
left: -29px;
top: 35px;
height: calc(100% - 35px);
}
.line {
margin-left: 5px;
}

View file

@ -34,6 +34,7 @@
</span>
{% endfor %}
{% endif %}
<div class="comment_collapse"></div>
</summary>
{% if is_filtered %}
<div class="comment_body_filtered {% if highlighted %}highlighted{% endif %}">(Filtered content)</div>