mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-12 01:06:55 +01:00
Fix wrong gradient color on collapsed private mentions (#2402)
Upstream changed the background color of private mentions, but the gradient used for collapsed toots still used the old color. Signed-off-by: Plastikmensch <plastikmensch@users.noreply.github.com>
This commit is contained in:
parent
a1df9fdb06
commit
075ee0b2d4
1 changed files with 2 additions and 2 deletions
|
@ -362,8 +362,8 @@
|
||||||
|
|
||||||
&.status-direct > .status__content::after {
|
&.status-direct > .status__content::after {
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
rgba(lighten($ui-base-color, 8%), 0),
|
rgba(mix($ui-base-color, $ui-highlight-color, 95%), 0),
|
||||||
rgba(lighten($ui-base-color, 8%), 1)
|
rgba(mix($ui-base-color, $ui-highlight-color, 95%), 1)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue