2020-08-05 18:38:55 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2020-08-12 11:52:03 +02:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-08-05 18:38:55 +02:00
|
|
|
|
|
|
|
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
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2020-08-14 14:34:39 +02:00
|
|
|
|
|
|
|
@media screen and (min-width: 600px) {
|
|
|
|
.PreSessionScreen {
|
|
|
|
width: 600px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-16 15:21:20 +02:00
|
|
|
.SessionView {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionView > .main {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
min-height: 0;
|
|
|
|
min-width: 0;
|
|
|
|
width: 100vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mobile layout */
|
|
|
|
@media screen and (max-width: 800px) {
|
2019-06-26 23:14:39 +02:00
|
|
|
.RoomHeader button.back { display: block; }
|
2019-06-26 22:43:59 +02:00
|
|
|
div.RoomView, div.RoomPlaceholderView { display: none; }
|
|
|
|
div.LeftPanel {flex-grow: 1;}
|
2019-06-28 00:44:49 +02:00
|
|
|
div.room-shown div.RoomView { display: flex; }
|
2019-06-26 22:43:59 +02:00
|
|
|
div.room-shown div.LeftPanel { display: none; }
|
|
|
|
div.right-shown div.TimelinePanel { display: none; }
|
2019-06-16 15:21:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.LeftPanel {
|
|
|
|
flex: 0 0 300px;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RoomPlaceholderView, .RoomView {
|
|
|
|
flex: 1 0 0;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RoomView {
|
|
|
|
min-width: 0;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.TimelinePanel {
|
|
|
|
flex: 3;
|
|
|
|
min-height: 0;
|
2019-09-28 09:45:14 +02:00
|
|
|
min-width: 0;
|
2019-06-16 15:21:20 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-07-29 20:11:15 +02:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2020-08-17 16:34:25 +02:00
|
|
|
.TimelinePanel .Timeline, .TimelinePanel .TimelineLoadingView {
|
2019-07-29 20:11:15 +02:00
|
|
|
flex: 1 0 0;
|
2019-06-16 15:21:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.RoomHeader {
|
|
|
|
display: flex;
|
|
|
|
}
|