mirror of
https://github.com/glitch-soc/mastodon.git
synced 2026-03-29 03:00:33 +02:00
Fix styling regressions: familiar followers layout & alert action hover color (#38438)
This commit is contained in:
@@ -121,6 +121,7 @@ export const EditedTimestamp: React.FC<{
|
|||||||
/>
|
/>
|
||||||
),
|
),
|
||||||
}}
|
}}
|
||||||
|
tagName='span'
|
||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
|
|||||||
@@ -69,7 +69,9 @@ export const FamiliarFollowers: React.FC<{ accountId: string }> = ({
|
|||||||
<Avatar withLink key={account.id} account={account} size={28} />
|
<Avatar withLink key={account.id} account={account} size={28} />
|
||||||
))}
|
))}
|
||||||
</AvatarGroup>
|
</AvatarGroup>
|
||||||
<FamiliarFollowersReadout familiarFollowers={familiarFollowers} />
|
<span>
|
||||||
|
<FamiliarFollowersReadout familiarFollowers={familiarFollowers} />
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -10400,9 +10400,13 @@ noscript {
|
|||||||
padding: 0 4px;
|
padding: 0 4px;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus,
|
|
||||||
&:active {
|
&: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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user