mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-29 12:48:57 +03:00
Bunch these avatars too
This commit is contained in:
parent
c9545cdc34
commit
a5532488aa
2 changed files with 5 additions and 1 deletions
|
@ -676,6 +676,10 @@ a[href^='http'][rel*='nofollow']:visited:not(:has(div)) {
|
||||||
position: relative;
|
position: relative;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
padding-block: 16px !important;
|
padding-block: 16px !important;
|
||||||
|
|
||||||
|
.avatars-bunch > .avatar:not(:first-child) {
|
||||||
|
margin-left: -4px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.timeline .show-more:hover {
|
.timeline .show-more:hover {
|
||||||
filter: none !important;
|
filter: none !important;
|
||||||
|
|
|
@ -1062,7 +1062,7 @@ function StatusThread({ id, closeLink = '/', instance: propInstance }) {
|
||||||
onClick={() => setLimit((l) => l + LIMIT)}
|
onClick={() => setLimit((l) => l + LIMIT)}
|
||||||
style={{ marginBlockEnd: '6em' }}
|
style={{ marginBlockEnd: '6em' }}
|
||||||
>
|
>
|
||||||
<div class="ib">
|
<div class="ib avatars-bunch">
|
||||||
{/* show avatars for first 5 statuses */}
|
{/* show avatars for first 5 statuses */}
|
||||||
{statuses.slice(limit, limit + 5).map((status) => (
|
{statuses.slice(limit, limit + 5).map((status) => (
|
||||||
<Avatar
|
<Avatar
|
||||||
|
|
Loading…
Reference in a new issue