From: Eugen Rochko Date: Fri, 4 Jan 2019 11:44:46 +0000 (+0100) Subject: Display fallback link card thumbnail when none is given (#9715) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=1512af2811cb5b2ffccac5452eb291b1af46f89d;p=mastodon.git Display fallback link card thumbnail when none is given (#9715) --- diff --git a/app/javascript/mastodon/features/status/components/card.js b/app/javascript/mastodon/features/status/components/card.js index 235d209b8..8491299ef 100644 --- a/app/javascript/mastodon/features/status/components/card.js +++ b/app/javascript/mastodon/features/status/components/card.js @@ -195,6 +195,12 @@ export default class Card extends React.PureComponent { {thumbnail} ); + } else { + embed = ( +
+ +
+ ); } return ( diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 0f94d8a32..3b18b623f 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -2587,6 +2587,15 @@ a.status-card { flex: 0 0 100px; background: lighten($ui-base-color, 8%); position: relative; + + .fa { + font-size: 21px; + position: absolute; + transform-origin: 50% 50%; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + } } .status-card.horizontal {