Merge branch 'link-previews-meta' into 'develop'
Always display embed description, even in timelines See merge request soapbox-pub/soapbox-fe!500
This commit is contained in:
commit
a3b2e007d3
2 changed files with 1 additions and 5 deletions
|
@ -210,7 +210,7 @@ export default class Card extends React.PureComponent {
|
||||||
return (
|
return (
|
||||||
<div className={className} ref={this.setRef}>
|
<div className={className} ref={this.setRef}>
|
||||||
{embed}
|
{embed}
|
||||||
{!compact && description}
|
{description}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
} else if (card.get('image')) {
|
} else if (card.get('image')) {
|
||||||
|
|
|
@ -612,10 +612,6 @@ a.status-card {
|
||||||
|
|
||||||
.status-card.compact {
|
.status-card.compact {
|
||||||
border-color: var(--brand-color--faint);
|
border-color: var(--brand-color--faint);
|
||||||
|
|
||||||
&.interactive {
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a.status-card.compact:hover {
|
a.status-card.compact:hover {
|
||||||
|
|
Loading…
Reference in a new issue