~cytrogen/masto-fe

613cfd625c8be11b4fb91d769ddbeee7a535a57a — Claire 2 years ago 152b10b
Change hashtag bar tags to be de-emphasized (#26606)

M app/javascript/mastodon/components/hashtag_bar.tsx => app/javascript/mastodon/components/hashtag_bar.tsx +1 -1
@@ 216,7 216,7 @@ const HashtagBar: React.FC<{
    <div className='hashtag-bar'>
      {revealedHashtags.map((hashtag) => (
        <Link key={hashtag} to={`/tags/${hashtag}`}>
          #{hashtag}
          #<span>{hashtag}</span>
        </Link>
      ))}


M app/javascript/styles/mastodon/components.scss => app/javascript/styles/mastodon/components.scss +7 -8
@@ 9305,16 9305,15 @@ noscript {

  a {
    display: inline-flex;
    border-radius: 4px;
    background: rgba($highlight-text-color, 0.2);
    color: $highlight-text-color;
    padding: 0.4em 0.6em;
    color: $dark-text-color;
    text-decoration: none;

    &:hover,
    &:focus,
    &:active {
      background: rgba($highlight-text-color, 0.3);
    &:hover {
      text-decoration: none;

      span {
        text-decoration: underline;
      }
    }
  }
}