2015-06-23 17:41:25 +02: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-12 18:34:17 +02:00
|
|
|
.mx_RoomView {
|
2015-06-15 16:50:24 +02:00
|
|
|
word-wrap: break-word;
|
2015-06-17 16:46:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomView .mx_RoomHeader {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
width: 100%;
|
|
|
|
height: 30px;
|
2015-06-12 18:34:17 +02:00
|
|
|
}
|
|
|
|
|
2015-06-22 12:42:09 +02:00
|
|
|
.mx_RoomView .mx_RoomView_MessageList {
|
2015-06-12 18:34:17 +02:00
|
|
|
padding: 0px;
|
2015-06-16 11:41:05 +02:00
|
|
|
margin: 0px;
|
2015-06-17 16:46:04 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 35px;
|
|
|
|
bottom: 40px;
|
|
|
|
left: 0px;
|
2015-06-22 12:42:09 +02:00
|
|
|
right: 150px;
|
2015-06-15 18:06:34 +02:00
|
|
|
overflow-y: scroll;
|
2015-06-12 18:34:17 +02:00
|
|
|
}
|
2015-06-16 11:41:05 +02:00
|
|
|
|
2015-06-17 16:46:04 +02:00
|
|
|
.mx_RoomView ul li {
|
2015-06-16 11:41:05 +02:00
|
|
|
list-style-type: none;
|
|
|
|
}
|
2015-06-17 16:46:04 +02:00
|
|
|
|
2015-06-22 15:48:58 +02:00
|
|
|
.mx_RoomView .mx_RoomView_invitePrompt {
|
|
|
|
}
|
|
|
|
|
2015-06-22 12:42:09 +02:00
|
|
|
.mx_RoomView .mx_MemberList {
|
|
|
|
position: absolute;
|
|
|
|
top: 35px;
|
|
|
|
bottom: 40px;
|
|
|
|
right: 0px;
|
|
|
|
width: 150px;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
2015-06-24 14:37:34 +02:00
|
|
|
overflow-y: scroll;
|
2015-06-22 12:42:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomView .mx_MemberList ul {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
2015-06-17 16:46:04 +02:00
|
|
|
.mx_RoomView .mx_MessageComposer {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 5px;
|
|
|
|
right: 0px;
|
|
|
|
left: 0px;
|
|
|
|
height: 36px;
|
|
|
|
}
|