This commit is contained in:
2026-08-19 23:01:06 +02:00
parent 3359e9f0d8
commit 11a4535ca9
5 changed files with 69 additions and 13 deletions

View File

@@ -3110,6 +3110,7 @@ body.layout-legacy .scroll-to-bottom svg {
isolation: isolate;
padding-bottom: 25px;
/* Room for absolute permalink */
overflow: hidden;
}
.comment > * {
@@ -3128,14 +3129,19 @@ body.layout-legacy .scroll-to-bottom svg {
max-height: var(--comment-banner-max-height, 300px);
background-image: var(--author-banner, none);
background-position: var(--author-banner-position, center top);
background-size: var(--author-banner-size, cover);
background-repeat: var(--author-banner-repeat, repeat);
background-size: var(--author-banner-size, 100% auto);
background-repeat: var(--author-banner-repeat, no-repeat);
opacity: var(--author-banner-opacity, 0.25);
z-index: 0;
border-radius: inherit;
pointer-events: none;
-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
-webkit-mask-image: var(--comment-banner-mask, linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%));
mask-image: var(--comment-banner-mask, linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%));
}
.comment.tall-comment::before {
-webkit-mask-image: var(--comment-banner-mask, linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%));
mask-image: var(--comment-banner-mask, linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%));
}
.comment.deleted {