Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MM-57521] Profile button on hover shouldn't be red #26940

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ exports[`components/StatusDropdown should match snapshot in default state 1`] =
}
icon={
<AccountOutlineIcon
className="profile__icon"
color="rgba(var(--center-channel-color-rgb), 0.56)"
size={16}
/>
Expand Down Expand Up @@ -543,7 +542,6 @@ exports[`components/StatusDropdown should match snapshot with custom status and
}
icon={
<AccountOutlineIcon
className="profile__icon"
color="rgba(var(--center-channel-color-rgb), 0.56)"
size={16}
/>
Expand Down Expand Up @@ -823,7 +821,6 @@ exports[`components/StatusDropdown should match snapshot with custom status enab
}
icon={
<AccountOutlineIcon
className="profile__icon"
color="rgba(var(--center-channel-color-rgb), 0.56)"
size={16}
/>
Expand Down Expand Up @@ -1103,7 +1100,6 @@ exports[`components/StatusDropdown should match snapshot with custom status expi
}
icon={
<AccountOutlineIcon
className="profile__icon"
color="rgba(var(--center-channel-color-rgb), 0.56)"
size={16}
/>
Expand Down Expand Up @@ -1384,7 +1380,6 @@ exports[`components/StatusDropdown should match snapshot with custom status puls
}
icon={
<AccountOutlineIcon
className="profile__icon"
color="rgba(var(--center-channel-color-rgb), 0.56)"
size={16}
/>
Expand Down Expand Up @@ -1640,7 +1635,6 @@ exports[`components/StatusDropdown should match snapshot with profile picture UR
}
icon={
<AccountOutlineIcon
className="profile__icon"
color="rgba(var(--center-channel-color-rgb), 0.56)"
size={16}
/>
Expand Down Expand Up @@ -1888,7 +1882,6 @@ exports[`components/StatusDropdown should match snapshot with status dropdown op
}
icon={
<AccountOutlineIcon
className="profile__icon"
color="rgba(var(--center-channel-color-rgb), 0.56)"
size={16}
/>
Expand Down Expand Up @@ -2168,7 +2161,6 @@ exports[`components/StatusDropdown should not show clear status button when cust
}
icon={
<AccountOutlineIcon
className="profile__icon"
color="rgba(var(--center-channel-color-rgb), 0.56)"
size={16}
/>
Expand Down Expand Up @@ -2496,7 +2488,6 @@ exports[`components/StatusDropdown should show clear status button when custom s
}
icon={
<AccountOutlineIcon
className="profile__icon"
color="rgba(var(--center-channel-color-rgb), 0.56)"
size={16}
/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
.profile__icon {
&:hover {
fill: rgba(255, 0, 0, 0.75);
}
}

.logout__icon {
&:hover {
fill: rgba(255, 0, 0, 0.75);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,6 @@ export class StatusDropdown extends React.PureComponent<Props, State> {
<AccountOutlineIcon
size={16}
color={'rgba(var(--center-channel-color-rgb), 0.56)'}
className={'profile__icon'}
/>
}
>
Expand Down