Skip to content
Snippets Groups Projects
Commit 10e78ecf authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Change contrast of status links that are not mentions nor hashtags (#11406)

parent f371b321
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,7 @@ export default class StatusContent extends React.PureComponent {
link.addEventListener('click', this.onHashtagClick.bind(this, link.text), false);
} else {
link.setAttribute('title', link.href);
link.classList.add('unhandled-link');
}
link.setAttribute('target', '_blank');
......
......@@ -753,6 +753,10 @@
}
}
a.unhandled-link {
color: lighten($ui-highlight-color, 8%);
}
.status__content__spoiler-link {
background: $action-button-color;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment