Collapsed toots: make overlay gradient cover only lower half of the toot

With increasing the collapsed toot height, the overlay gradient covered too much of the text making it unreadable. This adjusts it so that it covers only the lower half of the toot.
pull/2702/head
yurkobb 2024-05-05 21:01:35 +03:00 committed by GitHub
parent f47a74d304
commit 18f61fa7e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1557,7 +1557,7 @@ body > [data-popper-placement] {
bottom: 0;
inset-inline-start: 0;
inset-inline-end: 0;
background: linear-gradient(transparent, var(--background-color));
background: linear-gradient(transparent, transparent 50%, var(--background-color));
pointer-events: none;
}