mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
Change background color of notifications on private messages (#31657)
This commit is contained in:
parent
35538fe694
commit
3ddeaca863
|
@ -9,7 +9,7 @@ import { navigateToStatus } from 'mastodon/actions/statuses';
|
|||
import type { IconProp } from 'mastodon/components/icon';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { RelativeTimestamp } from 'mastodon/components/relative_timestamp';
|
||||
import { useAppDispatch } from 'mastodon/store';
|
||||
import { useAppSelector, useAppDispatch } from 'mastodon/store';
|
||||
|
||||
import { AvatarGroup } from './avatar_group';
|
||||
import { DisplayedName } from './displayed_name';
|
||||
|
@ -60,6 +60,10 @@ export const NotificationGroupWithStatus: React.FC<{
|
|||
[labelRenderer, accountIds, count, labelSeeMoreHref],
|
||||
);
|
||||
|
||||
const isPrivateMention = useAppSelector(
|
||||
(state) => state.statuses.getIn([statusId, 'visibility']) === 'direct',
|
||||
);
|
||||
|
||||
const handlers = useMemo(
|
||||
() => ({
|
||||
open: () => {
|
||||
|
@ -79,7 +83,10 @@ export const NotificationGroupWithStatus: React.FC<{
|
|||
role='button'
|
||||
className={classNames(
|
||||
`notification-group focusable notification-group--${type}`,
|
||||
{ 'notification-group--unread': unread },
|
||||
{
|
||||
'notification-group--unread': unread,
|
||||
'notification-group--direct': isPrivateMention,
|
||||
},
|
||||
)}
|
||||
tabIndex={0}
|
||||
>
|
||||
|
|
|
@ -1626,7 +1626,8 @@ body > [data-popper-placement] {
|
|||
}
|
||||
|
||||
.status__wrapper-direct,
|
||||
.notification-ungrouped--direct {
|
||||
.notification-ungrouped--direct,
|
||||
.notification-group--direct {
|
||||
background: rgba($ui-highlight-color, 0.05);
|
||||
|
||||
&:focus {
|
||||
|
|
Loading…
Reference in a new issue