/* * 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/. * */ .giphy-modal-header { display: flex; align-items: center; justify-content: space-between; } .giphy-modal-header-button { display: inline-block; width: 16px; } .giphy-modal-center { overflow: hidden; } .gif-container { display: flex; width: 100%; height: 100%; flex-wrap: wrap; justify-content: flex-start; } .gif-container-spinner, .gif-container-error { .full-screen; .flex-center; } .gif-container-error-message { .label-xs; color: var(--foreground); } .gif-container-item { .bg-contain; width: 100%; height: 100%; flex: 0 0 auto; cursor: pointer; .gif-container-grid & { width: calc(100% / 3); height: calc(100% / 2); background-size: cover; &:not(:hover) { transition-duration: var(--animation-timing-fast); transition-property: opacity; transition-timing-function: var(--ease-out-quart); } &.gif-container-item-selected { opacity: 1 !important; } &.gif-container-item-unselected { opacity: 0.16; } &:hover { opacity: 0.8; } } }