feat: Add "Followers you know" widget to user profiles (#34652)

This commit is contained in:
diondiondion 2025-05-13 08:38:18 +02:00 committed by GitHub
parent c9a554bdca
commit b135a831ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 213 additions and 17 deletions

View file

@ -2167,6 +2167,25 @@ a .account__avatar {
cursor: pointer;
}
.avatar-group {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.avatar-group--compact {
gap: 0;
flex-wrap: nowrap;
& > :not(:first-child) {
margin-inline-start: -8px;
.account__avatar {
box-shadow: 0 0 0 2px var(--background-color);
}
}
}
.account__avatar-overlay {
position: relative;
@ -8119,6 +8138,23 @@ noscript {
}
}
}
&__familiar-followers {
display: flex;
align-items: center;
gap: 10px;
margin-block-end: 16px;
color: $darker-text-color;
a:any-link {
color: inherit;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
}
}
.account__contents {
@ -10439,14 +10475,6 @@ noscript {
}
}
&__avatar-group {
display: flex;
gap: 8px;
height: 28px;
overflow-y: hidden;
flex-wrap: wrap;
}
.status {
padding: 0;
border: 0;