-
+
+ {accountIds
+ .slice(0, NOTIFICATIONS_GROUP_MAX_AVATARS)
+ .map((id) => (
+
+ ))}
+
{actions && (
{actions}
diff --git a/app/javascript/mastodon/locales/en.json b/app/javascript/mastodon/locales/en.json
index 45bc6109b7..2d49346ac7 100644
--- a/app/javascript/mastodon/locales/en.json
+++ b/app/javascript/mastodon/locales/en.json
@@ -518,7 +518,6 @@
"lists.exclusive": "Hide members in Home",
"lists.exclusive_hint": "If someone is on this list, hide them in your Home feed to avoid seeing their posts twice.",
"lists.find_users_to_add": "Find users to add",
- "lists.list_members": "List members",
"lists.list_members_count": "{count, plural, one {# member} other {# members}}",
"lists.list_name": "List name",
"lists.new_list_name": "New list name",
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss
index ea48d98ec6..f3271b2d3b 100644
--- a/app/javascript/styles/mastodon/components.scss
+++ b/app/javascript/styles/mastodon/components.scss
@@ -2179,10 +2179,18 @@ a .account__avatar {
& > :not(:first-child) {
margin-inline-start: -8px;
+ }
- .account__avatar {
- box-shadow: 0 0 0 2px var(--background-color);
- }
+ & > :first-child {
+ transform: rotate(-4deg);
+ }
+
+ & > :nth-child(2) {
+ transform: rotate(-2deg);
+ }
+
+ .account__avatar {
+ box-shadow: 0 0 0 2px var(--background-color);
}
}
diff --git a/app/javascript/styles/mastodon/forms.scss b/app/javascript/styles/mastodon/forms.scss
index 6ec6a4199f..5dbe4f9e08 100644
--- a/app/javascript/styles/mastodon/forms.scss
+++ b/app/javascript/styles/mastodon/forms.scss
@@ -1440,34 +1440,12 @@ code {
display: block;
color: $primary-text-color;
}
- }
- }
-}
-
-.avatar-pile {
- display: flex;
- align-items: center;
-
- img {
- display: block;
- border-radius: 8px;
- width: 32px;
- height: 32px;
- border: 2px solid var(--background-color);
- background: var(--surface-background-color);
- margin-inline-end: -16px;
- transform: rotate(0);
-
- &:first-child {
- transform: rotate(-4deg);
- }
-
- &:nth-child(2) {
- transform: rotate(-2deg);
- }
-
- &:last-child {
- margin-inline-end: 0;
+
+ .icon {
+ vertical-align: -5px;
+ width: 20px;
+ height: 20px;
+ }
}
}
}