2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2020-08-12 15:22:03 +05:30
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-08-05 22:08:55 +05:30
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-08-12 15:22:03 +05:30
|
|
|
.RoomPlaceholderView {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2019-06-16 18:51:20 +05:30
|
|
|
|
|
|
|
.RoomHeader {
|
2020-08-12 15:22:03 +05:30
|
|
|
align-items: center;
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|
|
|
|
|
2020-10-08 18:30:20 +05:30
|
|
|
.RoomHeader h2 {
|
|
|
|
flex: 1;
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.RoomHeader button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2019-06-27 02:44:39 +05:30
|
|
|
.RoomHeader .back {
|
2019-06-16 18:51:20 +05:30
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-06-27 02:44:39 +05:30
|
|
|
.RoomHeader .room-description {
|
2019-09-28 13:15:14 +05:30
|
|
|
flex: 1;
|
2019-06-27 02:44:39 +05:30
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
2019-06-16 18:51:20 +05:30
|
|
|
.RoomHeader .topic {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RoomHeader .description {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RoomHeader h2 {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-08-13 21:30:19 +05:30
|
|
|
.MessageComposer {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2019-07-27 14:10:56 +05:30
|
|
|
.MessageComposer > input {
|
|
|
|
display: block;
|
2020-08-13 21:30:19 +05:30
|
|
|
flex: 1;
|
2020-10-08 13:41:12 +05:30
|
|
|
min-width: 0;
|
2019-07-27 14:10:56 +05:30
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2020-08-17 20:04:25 +05:30
|
|
|
|
|
|
|
.TimelineLoadingView {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.TimelineLoadingView div {
|
2020-09-11 15:06:08 +05:30
|
|
|
margin-right: 10px;
|
2020-08-17 20:04:25 +05:30
|
|
|
}
|