2021-05-28 12:15:17 -04:00
|
|
|
// Copyright 2015-2021 Signal Messenger, LLC
|
2020-10-30 15:34:04 -05:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-07-25 12:24:03 -04:00
|
|
|
@import './mixins';
|
|
|
|
|
|
|
|
@keyframes panel--in {
|
|
|
|
from {
|
|
|
|
transform: translateX(500px);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
transform: translateX(0);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-18 23:09:34 -08:00
|
|
|
.conversation {
|
2019-09-16 11:15:54 -07:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
2017-07-24 18:43:35 -07:00
|
|
|
|
2019-10-04 11:06:17 -07:00
|
|
|
@include light-theme {
|
|
|
|
background-color: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include dark-theme {
|
|
|
|
background-color: $color-gray-95;
|
|
|
|
}
|
|
|
|
|
2019-07-25 12:24:03 -04:00
|
|
|
.panel {
|
2021-02-01 14:01:25 -06:00
|
|
|
height: calc(100% - #{$header-height} - var(--title-bar-drag-area-height));
|
2016-03-23 15:28:31 -07:00
|
|
|
overflow-y: scroll;
|
2019-07-25 12:24:03 -04:00
|
|
|
z-index: 1;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2021-02-01 14:01:25 -06:00
|
|
|
top: calc(#{$header-height} + var(--title-bar-drag-area-height));
|
2019-07-25 12:24:03 -04:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
@include light-theme() {
|
|
|
|
background-color: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include dark-theme() {
|
2019-05-31 15:42:01 -07:00
|
|
|
background-color: $color-gray-95;
|
2019-07-25 12:24:03 -04:00
|
|
|
}
|
2018-04-26 19:06:13 -04:00
|
|
|
}
|
2016-03-23 13:40:21 -07:00
|
|
|
|
2018-04-26 19:06:13 -04:00
|
|
|
.panel {
|
2019-07-25 12:24:03 -04:00
|
|
|
&:not(.main) {
|
|
|
|
animation: panel--in 250ms ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--static {
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--remove {
|
|
|
|
transform: translateX(500px);
|
|
|
|
opacity: 0;
|
|
|
|
transition: all 250ms ease-out;
|
|
|
|
}
|
|
|
|
|
2016-03-23 13:40:21 -07:00
|
|
|
.container {
|
|
|
|
padding-top: 20px;
|
2017-07-03 11:52:12 -07:00
|
|
|
max-width: 750px;
|
2016-03-23 13:40:21 -07:00
|
|
|
margin: 0 auto;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
}
|
2018-04-26 19:06:13 -04:00
|
|
|
|
2019-07-25 12:24:03 -04:00
|
|
|
.main.panel {
|
2016-01-21 23:45:13 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2016-03-23 13:40:21 -07:00
|
|
|
overflow: initial;
|
2018-04-26 19:06:13 -04:00
|
|
|
}
|
2016-01-21 23:31:37 +00:00
|
|
|
|
2018-04-26 19:06:13 -04:00
|
|
|
.main.panel {
|
2019-05-31 15:42:01 -07:00
|
|
|
.timeline-placeholder {
|
2016-01-21 23:45:13 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
position: relative;
|
2016-03-23 13:40:21 -07:00
|
|
|
max-width: 100%;
|
|
|
|
margin: 0;
|
2016-01-21 23:45:13 +00:00
|
|
|
|
2019-05-31 15:42:01 -07:00
|
|
|
.timeline-wrapper {
|
2018-08-10 17:15:00 -07:00
|
|
|
-webkit-padding-start: 0px;
|
2016-01-21 23:45:13 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2016-01-22 00:02:29 +00:00
|
|
|
margin: 0;
|
2019-05-31 15:42:01 -07:00
|
|
|
padding: 0;
|
2017-09-07 18:57:47 +02:00
|
|
|
overflow-y: auto;
|
2018-08-10 17:15:00 -07:00
|
|
|
overflow-x: hidden;
|
2016-01-21 23:45:13 +00:00
|
|
|
}
|
2016-01-21 23:31:37 +00:00
|
|
|
}
|
2015-06-16 22:43:40 +02:00
|
|
|
}
|
2015-02-18 23:09:34 -08:00
|
|
|
}
|
|
|
|
|
2019-05-16 15:32:11 -07:00
|
|
|
// Make sure the main panel is hidden when other panels are in the dom
|
|
|
|
.panel + .main.panel {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-07-09 14:29:13 -07:00
|
|
|
.message-detail-wrapper {
|
|
|
|
height: calc(100% - 48px);
|
|
|
|
width: 100%;
|
2018-07-18 10:42:06 -07:00
|
|
|
overflow-y: auto;
|
2018-07-09 14:29:13 -07:00
|
|
|
}
|
|
|
|
|
2017-05-31 16:08:32 -07:00
|
|
|
.discussion-container {
|
2019-10-04 11:06:17 -07:00
|
|
|
@include light-theme {
|
|
|
|
background-color: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include dark-theme {
|
|
|
|
background-color: $color-gray-95;
|
|
|
|
}
|
2017-05-31 16:08:32 -07:00
|
|
|
}
|
|
|
|
|
2018-11-14 11:10:32 -08:00
|
|
|
.typing-bubble-wrapper {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2018-05-23 12:15:46 -07:00
|
|
|
.contact-detail-pane {
|
|
|
|
overflow-y: scroll;
|
2018-06-27 13:53:49 -07:00
|
|
|
padding-top: 40px;
|
|
|
|
padding-bottom: 40px;
|
2018-05-23 12:15:46 -07:00
|
|
|
}
|
|
|
|
|
2018-04-18 14:48:57 -07:00
|
|
|
// We need to use the wrapper because the conversation view calculates the height of all
|
|
|
|
// things in the composition area. A margin on an inner div won't be included in that
|
|
|
|
// height calculation.
|
2018-04-18 13:06:33 -07:00
|
|
|
.bottom-bar .quote-wrapper {
|
2019-08-06 15:18:37 -04:00
|
|
|
margin-left: 18px;
|
|
|
|
margin-right: 18px;
|
2019-01-10 12:26:28 -08:00
|
|
|
margin-top: 3px;
|
2016-03-23 12:33:50 -07:00
|
|
|
}
|
|
|
|
|
2019-01-15 19:03:56 -08:00
|
|
|
.bottom-bar .preview-wrapper {
|
|
|
|
margin-top: 3px;
|
2019-08-06 15:18:37 -04:00
|
|
|
margin-left: 12px;
|
|
|
|
margin-right: 12px;
|
2019-01-15 19:03:56 -08:00
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
2015-01-19 16:44:34 -10:00
|
|
|
.bottom-bar {
|
2016-03-21 17:17:39 -07:00
|
|
|
box-sizing: content-box;
|
2015-06-16 22:43:40 +02:00
|
|
|
$button-width: 36px;
|
2017-10-30 13:54:55 -07:00
|
|
|
|
2016-03-20 23:15:21 -07:00
|
|
|
form.active {
|
2018-07-09 14:29:13 -07:00
|
|
|
textarea {
|
2021-05-28 12:15:17 -04:00
|
|
|
border: solid 1px $color-ultramarine;
|
2018-07-09 14:29:13 -07:00
|
|
|
}
|
2016-03-20 23:15:21 -07:00
|
|
|
}
|
|
|
|
|
2016-03-18 13:09:45 -07:00
|
|
|
form.send {
|
2019-01-10 12:26:28 -08:00
|
|
|
margin-bottom: 0px;
|
2019-10-04 11:06:17 -07:00
|
|
|
@include light-theme {
|
|
|
|
background: $color-white;
|
|
|
|
}
|
|
|
|
@include dark-theme {
|
|
|
|
background-color: $color-gray-95;
|
2018-04-25 18:32:46 -07:00
|
|
|
}
|
2016-03-18 13:09:45 -07:00
|
|
|
}
|
2015-01-19 16:44:34 -10:00
|
|
|
|
2016-08-15 15:36:29 -07:00
|
|
|
.flex {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.send-message {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-29 18:19:51 -07:00
|
|
|
.choose-file {
|
2015-01-24 23:18:10 -10:00
|
|
|
float: left;
|
2015-10-29 18:19:51 -07:00
|
|
|
height: 36px;
|
2015-01-19 16:44:34 -10:00
|
|
|
}
|
2015-06-16 22:43:40 +02:00
|
|
|
.send-message {
|
|
|
|
display: block;
|
|
|
|
max-height: 100px;
|
|
|
|
padding: 10px;
|
2019-01-10 12:26:28 -08:00
|
|
|
margin-top: 3px;
|
2018-07-09 14:29:13 -07:00
|
|
|
margin-bottom: 6px;
|
|
|
|
border-radius: 20px;
|
2019-10-04 11:06:17 -07:00
|
|
|
|
2015-06-17 23:06:19 +02:00
|
|
|
resize: none;
|
2015-12-06 23:26:27 -08:00
|
|
|
font-size: 1em;
|
2016-01-19 20:15:12 -08:00
|
|
|
font-family: inherit;
|
2016-08-15 15:36:29 -07:00
|
|
|
|
2019-10-04 11:06:17 -07:00
|
|
|
@include light-theme {
|
|
|
|
background-color: $color-gray-02;
|
|
|
|
color: $color-gray-95;
|
|
|
|
border: 1px solid $color-black-alpha-20;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include dark-theme {
|
|
|
|
background-color: $color-gray-90;
|
|
|
|
color: $color-gray-02;
|
|
|
|
border: 1px solid $color-gray-60;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2018-05-04 16:07:52 -04:00
|
|
|
&[disabled='disabled'] {
|
2016-08-15 15:36:29 -07:00
|
|
|
background: transparent;
|
|
|
|
}
|
2014-11-07 00:17:27 -08:00
|
|
|
}
|
2016-08-15 15:36:29 -07:00
|
|
|
.capture-audio {
|
|
|
|
float: right;
|
|
|
|
height: 36px;
|
|
|
|
}
|
2017-05-26 18:50:23 +02:00
|
|
|
.android-length-warning {
|
|
|
|
padding: 10px;
|
2018-05-04 16:07:52 -04:00
|
|
|
max-width: 150px;
|
2017-05-26 18:50:23 +02:00
|
|
|
}
|
2015-01-11 01:27:22 -10:00
|
|
|
}
|
2015-02-13 16:21:39 -08:00
|
|
|
|
2015-03-02 16:31:04 -08:00
|
|
|
.toast {
|
|
|
|
position: absolute;
|
2018-08-15 12:31:29 -07:00
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
bottom: 62px;
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 16px;
|
|
|
|
padding-top: 8px;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
border-radius: 4px;
|
2016-09-01 15:09:24 -07:00
|
|
|
z-index: 100;
|
2018-08-15 12:31:29 -07:00
|
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
2019-10-04 11:06:17 -07:00
|
|
|
@include light-theme {
|
|
|
|
background-color: $color-gray-75;
|
|
|
|
color: $color-white;
|
|
|
|
box-shadow: 0 4px 16px 0 $color-black-alpha-20,
|
|
|
|
0 0 0 0.5px $color-black-alpha-05;
|
|
|
|
}
|
|
|
|
@include dark-theme {
|
|
|
|
background-color: $color-gray-45;
|
|
|
|
color: $color-white;
|
|
|
|
box-shadow: 0 4px 16px 0 $color-white-alpha-20;
|
|
|
|
}
|
2015-03-02 16:31:04 -08:00
|
|
|
}
|
2015-06-16 22:43:40 +02:00
|
|
|
|
2020-01-09 11:57:43 -08:00
|
|
|
.toast-clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-07-03 15:33:50 -07:00
|
|
|
.permissions-popup,
|
|
|
|
.debug-log-window {
|
|
|
|
.modal {
|
|
|
|
background-color: transparent;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|