Merge commit '6c743831aab13a39f2020827f20933a51bc7cbc2' into glitch-soc/merge-upstream

This commit is contained in:
Claire
2025-05-15 18:52:02 +02:00
70 changed files with 538 additions and 184 deletions

View File

@@ -2091,6 +2091,7 @@ body > [data-popper-placement] {
display: block;
position: relative;
border-radius: var(--avatar-border-radius);
background: var(--surface-background-color);
img {
width: 100%;
@@ -2178,11 +2179,19 @@ a .account__avatar {
flex-wrap: nowrap;
& > :not(:first-child) {
margin-inline-start: -8px;
margin-inline-start: -12px;
}
.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);
}
}
@@ -8143,16 +8152,13 @@ noscript {
display: flex;
align-items: center;
gap: 10px;
margin-block-end: 16px;
margin-block: 16px;
color: $darker-text-color;
a:any-link {
color: inherit;
text-decoration: underline;
}
a:hover {
font-weight: 500;
text-decoration: none;
color: $primary-text-color;
}
}
}

View File

@@ -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;
}
}
}
}