/* * 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/. * */ .choose-screen { .full-screen; .flex-center; z-index: @z-index-choosescreen; flex-direction: column; background-color: fade(#000, 56%); } .choose-screen-list { display: flex; max-width: 100%; padding: 16px 0 8px; margin-bottom: 32px; cursor: pointer; overflow-y: auto; &:hover > .choose-screen-list-item { &::after { background-color: fade(#000, 24%); } } & > .choose-screen-list-item:hover { img { transform: scale(0.95); } &::after { background-color: transparent; transform: scale(0.95); } } } .choose-screen-controls-button { .button-reset-default; } .choose-screen-list-item { .button-reset-default; position: relative; width: auto; height: 176px; padding-right: 32px; cursor: pointer; transition: all var(--animation-timing-faster); img { transition: all var(--animation-timing-faster); } &::after { .full-screen; right: 32px; left: 0; border-radius: 4px; background-color: transparent; content: ''; transition: all var(--animation-timing-faster); } &:first-child { padding-left: 32px; &::after { left: 32px; } } } .choose-screen-list-image { width: auto; height: 176px; border-radius: 4px; background-color: var(--background); } .choose-screen-controls { position: fixed; bottom: 64px; left: 0; display: flex; width: 100%; justify-content: center; transition: opacity 0.25s ease-in-out; }