~cytrogen/masto-fe

728eb6a15387da9074ccc024c9002f74ff829470 — Eugen Rochko 2 years ago 0509326
Fix wrong color on active icons with counters in web UI (#26767)

1 files changed, 11 insertions(+), 11 deletions(-)

M app/javascript/styles/mastodon/components.scss
M app/javascript/styles/mastodon/components.scss => app/javascript/styles/mastodon/components.scss +11 -11
@@ 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%);
    }
  }