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
|
|
|
.LeftPanel {
|
2020-10-06 15:52:06 +05:30
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.LeftPanel .filter {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.LeftPanel .filter input {
|
|
|
|
display: block;
|
|
|
|
flex: 1;
|
|
|
|
box-sizing: border-box;
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.LeftPanel ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-10-06 15:52:06 +05:30
|
|
|
.RoomList {
|
2020-10-06 16:04:13 +05:30
|
|
|
flex: 1 0 0;
|
2020-10-06 15:52:06 +05:30
|
|
|
overflow-y: auto;
|
|
|
|
overscroll-behavior: contain;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RoomList li {
|
2019-06-16 18:51:20 +05:30
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2020-10-06 15:52:06 +05:30
|
|
|
.RoomList .description {
|
2019-06-16 18:51:20 +05:30
|
|
|
margin: 0;
|
|
|
|
flex: 1 1 0;
|
|
|
|
min-width: 0;
|
2020-08-21 19:20:47 +05:30
|
|
|
display: flex;
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|
|
|
|
|
2020-10-06 15:52:06 +05:30
|
|
|
.RoomList .description > .name {
|
2019-06-16 18:51:20 +05:30
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2020-08-21 19:20:47 +05:30
|
|
|
flex: 1;
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|