83 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CSS
		
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CSS
		
	
	
/*
 | 
						|
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.
 | 
						|
*/
 | 
						|
 | 
						|
.mx_RoomView {
 | 
						|
    word-wrap: break-word;
 | 
						|
    position: relative;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomHeader {
 | 
						|
    height: 30px;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomView_roomWrapper {
 | 
						|
    display: -webkit-box;
 | 
						|
    display: -moz-box;
 | 
						|
    display: -ms-flexbox;
 | 
						|
    display: -webkit-flex;
 | 
						|
    display: flex;    
 | 
						|
    position: absolute;
 | 
						|
    width: 100%;
 | 
						|
    top: 32px;
 | 
						|
    bottom: 0px;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomView_messagePanel {
 | 
						|
    -webkit-box-ordinal-group: 1;
 | 
						|
    -moz-box-ordinal-group: 1;
 | 
						|
    -ms-flex-order: 1;
 | 
						|
    -webkit-order: 1;
 | 
						|
    order: 1;
 | 
						|
    width: 100%;
 | 
						|
    height: 100%;
 | 
						|
    /* background-color: #ff0; */
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomView_messageListWrapper {
 | 
						|
    height: 100%;
 | 
						|
    overflow-y: scroll;    
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomView_MessageList {
 | 
						|
    display: table;
 | 
						|
}
 | 
						|
 | 
						|
.mx_RoomView_invitePrompt {
 | 
						|
}
 | 
						|
 | 
						|
.mx_MemberList {
 | 
						|
    -webkit-box-ordinal-group: 2;
 | 
						|
    -moz-box-ordinal-group: 2;
 | 
						|
    -ms-flex-order: 2;
 | 
						|
    -webkit-order: 2;
 | 
						|
    order: 2;
 | 
						|
 | 
						|
    /* background-color: #0f0; */
 | 
						|
    width: 250px;
 | 
						|
    overflow-y: scroll;
 | 
						|
    height: 100%;
 | 
						|
}
 | 
						|
 | 
						|
.mx_MemberList ul {
 | 
						|
    margin: 0px;
 | 
						|
    padding: 0px;
 | 
						|
}
 | 
						|
 | 
						|
.mx_MessageComposer {
 | 
						|
    width: 100%;
 | 
						|
    bottom: 0px;
 | 
						|
}
 |