2021-06-23 14:33:27 +00:00
|
|
|
// Copyright 2015-2021 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-06-23 14:33:27 +00:00
|
|
|
#app-container {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2015-08-25 23:47:15 +00:00
|
|
|
.conversation-stack,
|
2018-05-04 20:07:52 +00:00
|
|
|
.new-conversation,
|
|
|
|
.inbox,
|
2020-06-04 18:16:19 +00:00
|
|
|
.inbox-container,
|
2018-05-04 20:07:52 +00:00
|
|
|
.gutter {
|
2015-02-19 07:09:34 +00:00
|
|
|
height: 100%;
|
2019-05-31 21:52:22 +00:00
|
|
|
overflow: hidden;
|
2019-09-16 18:15:54 +00:00
|
|
|
position: relative;
|
2015-02-19 07:09:34 +00:00
|
|
|
}
|
2015-08-27 00:11:01 +00:00
|
|
|
|
2020-06-04 18:16:19 +00:00
|
|
|
.inbox {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2016-03-23 20:40:21 +00:00
|
|
|
.scrollable {
|
2015-03-09 21:50:50 +00:00
|
|
|
height: 100%;
|
2015-02-19 07:09:34 +00:00
|
|
|
overflow: auto;
|
2015-01-30 06:59:08 +00:00
|
|
|
}
|
|
|
|
|
2015-08-25 23:47:15 +00:00
|
|
|
.gutter {
|
2019-10-04 18:06:17 +00:00
|
|
|
@include light-theme {
|
|
|
|
background-color: $color-gray-02;
|
2018-08-08 18:27:40 +00:00
|
|
|
|
2019-10-04 18:06:17 +00:00
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background: $color-gray-02;
|
|
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
border: 2px solid $color-gray-02;
|
|
|
|
}
|
2018-08-08 18:27:40 +00:00
|
|
|
}
|
2019-10-04 18:06:17 +00:00
|
|
|
@include dark-theme {
|
|
|
|
background-color: $color-gray-80;
|
2018-08-08 18:27:40 +00:00
|
|
|
|
2019-10-04 18:06:17 +00:00
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background: $color-gray-80;
|
|
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
border: 2px solid $color-gray-80;
|
|
|
|
}
|
2018-08-08 18:27:40 +00:00
|
|
|
}
|
|
|
|
|
2015-08-25 23:47:15 +00:00
|
|
|
float: left;
|
2019-10-04 18:06:17 +00:00
|
|
|
width: $left-pane-width;
|
2019-01-22 22:08:00 +00:00
|
|
|
user-select: none;
|
2019-01-10 20:26:28 +00:00
|
|
|
|
2016-02-22 18:47:48 +00:00
|
|
|
.content {
|
2018-07-09 21:29:13 +00:00
|
|
|
overflow-y: scroll;
|
|
|
|
max-height: calc(100% - 88px);
|
2015-08-27 00:48:18 +00:00
|
|
|
}
|
2017-04-11 23:24:06 +00:00
|
|
|
}
|
2019-01-10 20:26:28 +00:00
|
|
|
|
2019-01-14 21:49:58 +00:00
|
|
|
.left-pane-placeholder {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.left-pane-wrapper {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2015-11-27 23:43:45 +00:00
|
|
|
.conversation.placeholder {
|
2015-11-28 22:41:58 +00:00
|
|
|
text-align: center;
|
2019-01-22 22:08:00 +00:00
|
|
|
user-select: none;
|
|
|
|
|
2018-03-07 02:27:49 +00:00
|
|
|
.container {
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2016-08-31 01:27:54 +00:00
|
|
|
.content {
|
2018-03-07 02:27:49 +00:00
|
|
|
display: inline-block;
|
2016-08-31 01:27:54 +00:00
|
|
|
}
|
2016-07-05 02:29:06 +00:00
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: large;
|
|
|
|
}
|
2015-11-27 23:43:45 +00:00
|
|
|
}
|
2020-10-01 00:43:05 +00:00
|
|
|
|
|
|
|
.call-manager-wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|