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