2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-06-16 18:51:20 +05:30
|
|
|
|
|
|
|
.TimelinePanel ul {
|
|
|
|
overflow-y: auto;
|
2020-05-10 13:30:13 +05:30
|
|
|
overscroll-behavior: contain;
|
2019-06-16 18:51:20 +05:30
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.TimelinePanel li {
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-container {
|
|
|
|
flex: 0 1 auto;
|
2019-09-28 13:15:14 +05:30
|
|
|
/* first try break-all, then break-word, which isn't supported everywhere */
|
|
|
|
word-break: break-all;
|
2019-06-28 04:14:49 +05:30
|
|
|
word-break: break-word;
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|
|
|
|
|
2020-08-12 20:17:07 +05:30
|
|
|
.message-container .sender {
|
|
|
|
margin: 5px 0;
|
|
|
|
}
|
|
|
|
|
2020-10-31 04:55:05 +05:30
|
|
|
.message-container .picture {
|
2020-08-12 20:17:07 +05:30
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-10-31 04:55:05 +05:30
|
|
|
.message-container .picture > img {
|
2020-05-10 00:52:30 +05:30
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2019-06-16 18:51:20 +05:30
|
|
|
.TextMessageView {
|
|
|
|
display: flex;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.AnnouncementView {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2020-08-17 18:52:39 +05:30
|
|
|
|
|
|
|
.GapView {
|
|
|
|
visibility: hidden;
|
|
|
|
display: flex;
|
|
|
|
padding: 10px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.GapView.isLoading {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
2020-10-08 19:23:13 +05:30
|
|
|
.GapView > :nth-child(2) {
|
|
|
|
flex: 1;
|
2020-08-17 18:52:39 +05:30
|
|
|
}
|