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.
|
|
|
|
*/
|
|
|
|
|
2019-06-16 18:51:20 +05:30
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2020-08-14 18:04:39 +05:30
|
|
|
@media screen and (min-width: 600px) {
|
|
|
|
.PreSessionScreen {
|
|
|
|
width: 600px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 19:44:59 +05:30
|
|
|
.room-placeholder {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2019-06-16 18:51:20 +05:30
|
|
|
.SessionView {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-10-05 20:33:32 +05:30
|
|
|
/* this takes into account whether or not the url bar is hidden on mobile
|
|
|
|
(have tested Firefox Android and Safari on iOS),
|
|
|
|
see https://developers.google.com/web/updates/2016/12/url-bar-resizing */
|
|
|
|
position: fixed;
|
|
|
|
height: 100%;
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.SessionView > .main {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
min-height: 0;
|
|
|
|
min-width: 0;
|
|
|
|
width: 100vw;
|
|
|
|
}
|
|
|
|
|
2020-10-19 18:22:18 +05:30
|
|
|
/* hide back button in middle section by default */
|
|
|
|
.middle .close-middle { display: none; }
|
2019-06-16 18:51:20 +05:30
|
|
|
/* mobile layout */
|
|
|
|
@media screen and (max-width: 800px) {
|
2020-10-07 17:52:00 +05:30
|
|
|
/* show back button */
|
2020-10-19 18:22:18 +05:30
|
|
|
.middle .close-middle { display: block !important; }
|
2020-10-07 17:52:00 +05:30
|
|
|
/* hide grid button */
|
2020-10-14 18:24:56 +05:30
|
|
|
.LeftPanel .grid { display: none !important; }
|
2020-10-19 18:22:18 +05:30
|
|
|
div.middle, div.room-placeholder { display: none; }
|
2019-06-27 02:13:59 +05:30
|
|
|
div.LeftPanel {flex-grow: 1;}
|
2020-10-19 18:22:18 +05:30
|
|
|
div.middle-shown div.middle { display: flex; }
|
|
|
|
div.middle-shown div.LeftPanel { display: none; }
|
2019-06-27 02:13:59 +05:30
|
|
|
div.right-shown div.TimelinePanel { display: none; }
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.LeftPanel {
|
|
|
|
flex: 0 0 300px;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
2020-10-19 18:22:18 +05:30
|
|
|
.room-placeholder, .middle {
|
2019-06-16 18:51:20 +05:30
|
|
|
flex: 1 0 0;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RoomView {
|
|
|
|
min-width: 0;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.TimelinePanel {
|
|
|
|
flex: 3;
|
|
|
|
min-height: 0;
|
2019-09-28 13:15:14 +05:30
|
|
|
min-width: 0;
|
2019-06-16 18:51:20 +05:30
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-07-29 23:41:15 +05:30
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2020-08-17 20:04:25 +05:30
|
|
|
.TimelinePanel .Timeline, .TimelinePanel .TimelineLoadingView {
|
2019-07-29 23:41:15 +05:30
|
|
|
flex: 1 0 0;
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|
|
|
|
|
2020-10-19 18:22:18 +05:30
|
|
|
.middle-header {
|
2019-06-16 18:51:20 +05:30
|
|
|
display: flex;
|
|
|
|
}
|
2020-10-07 17:52:00 +05:30
|
|
|
|
|
|
|
.RoomGridView {
|
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
2020-10-08 17:47:43 +05:30
|
|
|
.RoomGridView.layout3x2 {
|
|
|
|
grid-template:
|
|
|
|
"t0 t1 t2" 1fr
|
|
|
|
"t3 t4 t5" 1fr /
|
|
|
|
1fr 1fr 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RoomGridView > .tile0 {grid-area: t0;}
|
|
|
|
.RoomGridView > .tile1 {grid-area: t1;}
|
|
|
|
.RoomGridView > .tile2 {grid-area: t2;}
|
|
|
|
.RoomGridView > .tile3 {grid-area: t3;}
|
|
|
|
.RoomGridView > .tile4 {grid-area: t4;}
|
|
|
|
.RoomGridView > .tile5 {grid-area: t5;}
|
|
|
|
|
2020-10-07 17:52:00 +05:30
|
|
|
.RoomGridView > div {
|
|
|
|
display: flex;
|
|
|
|
min-width: 0;
|
2020-10-07 21:29:40 +05:30
|
|
|
min-height: 0;
|
2020-10-07 17:52:00 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.RoomGridView > div.focus-ring {
|
|
|
|
z-index: 1;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|