Stack link previews on mobile

merge-requests/499/head
Alex Gleason 2021-05-11 22:35:02 -05:00
rodzic 9a4ae568b4
commit 87fd056d57
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
2 zmienionych plików z 13 dodań i 1 usunięć

Wyświetl plik

@ -166,7 +166,7 @@ export default class Card extends React.PureComponent {
const provider = card.get('provider_name').length === 0 ? decodeIDNA(getHostname(card.get('url'))) : card.get('provider_name');
const interactive = card.get('type') !== 'link';
const horizontal = (!compact && cardWidth > cardHeight && (cardWidth + 100 >= width)) || interactive || embedded;
const className = classnames('status-card', { horizontal, compact, interactive });
const className = classnames('status-card', { horizontal, compact, interactive }, `status-card--${card.get('type')}`);
const title = interactive ? <a className='status-card__title' href={card.get('url')} title={card.get('title')} rel='noopener' target='_blank'><strong>{card.get('title')}</strong></a> : <strong className='status-card__title' title={card.get('title')}>{card.get('title')}</strong>;
const ratio = this.getRatio(card);
const height = (compact && !embedded) ? (width / (16 / 9)) : (width / ratio);

Wyświetl plik

@ -637,6 +637,18 @@ a.status-card.compact:hover {
background-position: center center;
}
@media (max-width: 600px) {
.status-card--link {
flex-direction: column;
.status-card__image {
width: 100%;
height: 200px;
flex: none;
}
}
}
.status__favicon {
width: 16px;
height: 16px;