forked from cybrespace/mastodon
Change contrast of status links that are not mentions nor hashtags (#11406)
This commit is contained in:
parent
f371b32137
commit
10e78ecf57
|
@ -55,6 +55,7 @@ export default class StatusContent extends React.PureComponent {
|
||||||
link.addEventListener('click', this.onHashtagClick.bind(this, link.text), false);
|
link.addEventListener('click', this.onHashtagClick.bind(this, link.text), false);
|
||||||
} else {
|
} else {
|
||||||
link.setAttribute('title', link.href);
|
link.setAttribute('title', link.href);
|
||||||
|
link.classList.add('unhandled-link');
|
||||||
}
|
}
|
||||||
|
|
||||||
link.setAttribute('target', '_blank');
|
link.setAttribute('target', '_blank');
|
||||||
|
|
|
@ -753,6 +753,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a.unhandled-link {
|
||||||
|
color: lighten($ui-highlight-color, 8%);
|
||||||
|
}
|
||||||
|
|
||||||
.status__content__spoiler-link {
|
.status__content__spoiler-link {
|
||||||
background: $action-button-color;
|
background: $action-button-color;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue