/* * Wire * Copyright (C) 2018 Wire Swiss GmbH * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses/. * */ .link-preview-asset { .asset-container-style; display: flex; width: 100%; cursor: pointer; &.ephemeral-asset-expired { cursor: default; } } .link-preview-image-container { width: var(--link-preview-height); height: var(--link-preview-height); flex: 0 0 auto; background-color: var(--foreground-fade-24); } .link-preview-image-placeholder { .flex-center; width: 100%; height: 100%; color: #fff; } .link-preview-image { width: 100%; height: 100%; } .link-preview-info { display: flex; width: 0; min-height: var(--link-preview-height); flex: 1 1 auto; flex-direction: column; justify-content: center; padding: 12px; } .link-preview-info-header { margin-bottom: 4px; } .link-preview-info-title { font-weight: var(--font-weight-bold); line-height: var(--line-height-lg); } .link-preview-info-title-singleline { .ellipsis; white-space: nowrap; } .link-preview-info-title-multiline { .ellipsis-multiline(2); } .link-preview-info-link { margin-top: 4px; font-size: var(--font-size-xsmall); line-height: var(--line-height-sm); }