UX: switch webkit to pseudoelement for fadeout (#19587)

This commit is contained in:
chapoi 2022-12-22 21:23:58 +01:00 committed by GitHub
parent 3c0a4b37d0
commit b756866334
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 6 deletions

View File

@ -45,16 +45,27 @@ a.hashtag-cooked {
height: inherit;
max-height: inherit;
overflow-y: auto;
-webkit-mask: linear-gradient(
180deg,
rgba(255, 255, 255, 1) calc(100% - 1.5em),
rgba(255, 255, 255, 0) 100%
);
&:after {
content: "";
position: absolute;
bottom: 0;
width: 100%;
height: 1.5em;
background: linear-gradient(
to bottom,
rgba(var(--secondary-rgb), 0),
rgba(var(--secondary-rgb), 100%)
);
}
}
&__option {
&:last-of-type {
margin-bottom: 0.75em; //used to the fadeout doesn't overlap the last item
.hashtag-autocomplete__link {
position: relative;
z-index: 1;
}
}
}