2023-01-03 11:55:46 -08:00
|
|
|
// Copyright 2015 Signal Messenger, LLC
|
2020-10-30 15:34:04 -05:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-06-23 09:33:27 -05:00
|
|
|
#app-container {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2015-08-25 16:47:15 -07:00
|
|
|
.conversation-stack,
|
2018-05-04 16:07:52 -04:00
|
|
|
.inbox,
|
2021-10-12 18:59:08 -05:00
|
|
|
.no-conversation-open {
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-10-12 18:59:08 -05:00
|
|
|
.no-conversation-open {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-04-11 16:24:06 -07:00
|
|
|
}
|
2019-01-10 12:26:28 -08:00
|
|
|
|
2021-10-12 18:59:08 -05:00
|
|
|
.conversation-stack {
|
|
|
|
flex-grow: 1;
|
2019-01-14 13:49:58 -08:00
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
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
|
|
|
}
|