2015-06-23 23:41:25 +08:00
|
|
|
/*
|
|
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2015-06-15 22:50:24 +08:00
|
|
|
.mx_MatrixChat {
|
2015-06-17 22:46:04 +08:00
|
|
|
position: relative;
|
2015-06-15 22:50:24 +08:00
|
|
|
width: 100%;
|
2015-06-16 00:06:34 +08:00
|
|
|
height: 100%;
|
2015-06-15 22:50:24 +08:00
|
|
|
}
|
|
|
|
|
2015-06-13 00:34:17 +08:00
|
|
|
.mx_MatrixChat_leftPanel {
|
2015-06-17 22:46:04 +08:00
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
2015-06-15 22:50:24 +08:00
|
|
|
width: 250px;
|
2015-06-16 22:02:44 +08:00
|
|
|
height: 100%;
|
2015-06-13 00:34:17 +08:00
|
|
|
}
|
2015-06-17 22:46:04 +08:00
|
|
|
|
|
|
|
.mx_MatrixChat_leftPanel .mx_MatrixToolbar {
|
|
|
|
position: absolute;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MatrixChat_leftPanel .mx_RoomList {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
bottom: 0px;
|
|
|
|
width: 250px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MatrixChat .mx_RoomView {
|
|
|
|
position: absolute;
|
|
|
|
left: 255px;
|
|
|
|
right: 0px;
|
|
|
|
height: 100%;
|
|
|
|
}
|