Skip to content

Commit

Permalink
Fix wrong color on active icons with counters in web UI (mastodon#26767)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gargron authored Sep 2, 2023
1 parent 0509326 commit 728eb6a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions app/javascript/styles/mastodon/components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -228,20 +228,20 @@
color: lighten($lighter-text-color, 7%);
background-color: transparent;
}
}

&.active {
color: $highlight-text-color;
&.active {
color: $highlight-text-color;

&:hover,
&:active,
&:focus {
color: $highlight-text-color;
background-color: transparent;
}
&:hover,
&:active,
&:focus {
color: $highlight-text-color;
background-color: transparent;
}

&.disabled {
color: lighten($highlight-text-color, 13%);
}
&.disabled {
color: lighten($highlight-text-color, 13%);
}
}

Expand Down

0 comments on commit 728eb6a

Please sign in to comment.