Fix styling regressions: familiar followers layout & alert action hover color (#38438)

This commit is contained in:
diondiondion
2026-03-27 11:12:41 +01:00
committed by GitHub
parent 28284b8452
commit e26c6fa256
3 changed files with 10 additions and 3 deletions

View File

@@ -121,6 +121,7 @@ export const EditedTimestamp: React.FC<{
/>
),
}}
tagName='span'
/>
</button>
</Dropdown>

View File

@@ -69,7 +69,9 @@ export const FamiliarFollowers: React.FC<{ accountId: string }> = ({
<Avatar withLink key={account.id} account={account} size={28} />
))}
</AvatarGroup>
<FamiliarFollowersReadout familiarFollowers={familiarFollowers} />
<span>
<FamiliarFollowersReadout familiarFollowers={familiarFollowers} />
</span>
</div>
);
};

View File

@@ -10400,9 +10400,13 @@ noscript {
padding: 0 4px;
&:hover,
&:focus,
&:active {
background: var(--color-bg-brand-softest);
background: rgb(from var(--color-text-inverted) r g b / 10%);
}
&:focus-visible {
outline: 2px solid var(--color-text-brand-on-inverted);
outline-offset: 2px;
}
}