[Glitch] Change contrast of status links that are not mentions nor hashtags

Port 10e78ecf57 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
master
ThibG 5 years ago committed by Thibaut Girka
parent 31fc3be0a4
commit 7f147acea6
  1. 1
      app/javascript/flavours/glitch/components/status_content.js
  2. 4
      app/javascript/flavours/glitch/styles/components/status.scss

@ -51,6 +51,7 @@ export default class StatusContent extends React.PureComponent {
} else {
link.addEventListener('click', this.onLinkClick.bind(this), false);
link.setAttribute('title', link.href);
link.classList.add('unhandled-link');
}
link.setAttribute('target', '_blank');

@ -133,6 +133,10 @@
}
}
a.unhandled-link {
color: lighten($ui-highlight-color, 8%);
}
.status__content__spoiler-link {
background: lighten($ui-base-color, 30%);

Loading…
Cancel
Save