2020-08-05 18:38:55 +02:00
|
|
|
/*
|
|
|
|
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 15:21:20 +02:00
|
|
|
|
|
|
|
.TimelinePanel ul {
|
|
|
|
overflow-y: auto;
|
2020-05-10 10:00:13 +02:00
|
|
|
overscroll-behavior: contain;
|
2019-06-16 15:21:20 +02:00
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.TimelinePanel li {
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-container {
|
|
|
|
flex: 0 1 auto;
|
|
|
|
max-width: 80%;
|
|
|
|
padding: 5px 10px;
|
|
|
|
margin: 5px 10px;
|
|
|
|
background: blue;
|
2019-09-28 09:45:14 +02:00
|
|
|
/* first try break-all, then break-word, which isn't supported everywhere */
|
|
|
|
word-break: break-all;
|
2019-06-28 00:44:49 +02:00
|
|
|
word-break: break-word;
|
2019-06-16 15:21:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.message-container .sender {
|
|
|
|
margin: 5px 0;
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-05-10 11:56:05 +02:00
|
|
|
.message-container img {
|
2020-05-09 21:22:30 +02:00
|
|
|
display: block;
|
2020-05-10 11:56:05 +02:00
|
|
|
width: 100%;
|
2020-05-13 10:20:28 +02:00
|
|
|
height: auto;
|
2020-05-09 21:22:30 +02:00
|
|
|
}
|
|
|
|
|
2019-06-16 15:21:20 +02:00
|
|
|
.TextMessageView {
|
|
|
|
display: flex;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.TextMessageView.own .message-container {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.TextMessageView .message-container time {
|
|
|
|
float: right;
|
|
|
|
padding: 2px 0 0px 20px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
color: lightblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-container time {
|
|
|
|
font-size: 0.9em;
|
|
|
|
color: lightblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.own time {
|
|
|
|
color: lightgreen;
|
|
|
|
}
|
|
|
|
|
|
|
|
.own .message-container {
|
|
|
|
background-color: darkgreen;
|
|
|
|
}
|
|
|
|
|
2019-07-29 19:53:58 +02:00
|
|
|
.TextMessageView.pending .message-container {
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
|
2019-06-16 15:21:20 +02:00
|
|
|
.message-container p {
|
|
|
|
margin: 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.AnnouncementView {
|
|
|
|
margin: 5px 0;
|
|
|
|
padding: 5px 10%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.AnnouncementView > div {
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 10px 20px;
|
|
|
|
background-color: #333;
|
|
|
|
font-size: 0.9em;
|
|
|
|
color: #CCC;
|
|
|
|
text-align: center;
|
|
|
|
}
|