86 lines
1.5 KiB
SCSS
86 lines
1.5 KiB
SCSS
// Copyright 2015-2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
@import './mixins';
|
|
|
|
@keyframes panel--in {
|
|
from {
|
|
transform: translateX(500px);
|
|
}
|
|
|
|
to {
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
.conversation {
|
|
@include light-theme {
|
|
background-color: $color-white;
|
|
}
|
|
|
|
@include dark-theme {
|
|
background-color: $color-gray-95;
|
|
}
|
|
|
|
.panel {
|
|
height: calc(100% - #{$header-height} - var(--title-bar-drag-area-height));
|
|
left: 0;
|
|
overflow-y: overlay;
|
|
position: absolute;
|
|
top: calc(#{$header-height} + var(--title-bar-drag-area-height));
|
|
width: 100%;
|
|
z-index: $z-index-base;
|
|
|
|
@include light-theme() {
|
|
background-color: $color-white;
|
|
}
|
|
|
|
@include dark-theme() {
|
|
background-color: $color-gray-95;
|
|
}
|
|
}
|
|
|
|
.panel {
|
|
&:not(.main) {
|
|
animation: panel--in 350ms cubic-bezier(0.17, 0.17, 0, 1);
|
|
}
|
|
|
|
&--static {
|
|
animation: none;
|
|
}
|
|
|
|
&--remove {
|
|
transform: translateX(100%);
|
|
transition: transform 350ms cubic-bezier(0.17, 0.17, 0, 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Make sure the main panel is hidden when other panels are in the dom
|
|
.panel + .main.panel {
|
|
display: none;
|
|
}
|
|
|
|
.message-detail-wrapper {
|
|
height: calc(100% - 48px);
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.typing-bubble-wrapper {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.contact-detail-pane {
|
|
overflow-y: scroll;
|
|
padding-top: 40px;
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
.permissions-popup,
|
|
.debug-log-window {
|
|
.modal {
|
|
background-color: transparent;
|
|
padding: 0;
|
|
}
|
|
}
|