92 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			SCSS
		
	
	
| /*
 | |
| Copyright 2015, 2016 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_MemberList,
 | |
| .mx_GroupMemberList,
 | |
| .mx_GroupRoomList {
 | |
|     flex: 1;
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
| 
 | |
|     .mx_Spinner {
 | |
|         flex: 1 0 auto;
 | |
|     }
 | |
| 
 | |
|     h2 {
 | |
|         text-transform: uppercase;
 | |
|         color: $h3-color;
 | |
|         font-weight: 600;
 | |
|         font-size: 13px;
 | |
|         padding-left: 3px;
 | |
|         padding-right: 12px;
 | |
|         margin-top: 8px;
 | |
|         margin-bottom: 4px;
 | |
|     }
 | |
| }
 | |
| 
 | |
| .mx_MemberList_chevron {
 | |
|     position: absolute;
 | |
|     right: 35px;
 | |
|     margin-top: -15px;
 | |
| }
 | |
| 
 | |
| .mx_MemberList_border {
 | |
|     overflow-y: auto;
 | |
| 
 | |
|     order: 1;
 | |
|     flex: 1 1 0px;
 | |
| }
 | |
| 
 | |
| .mx_MemberList_query,
 | |
| .mx_GroupMemberList_query,
 | |
| .mx_GroupRoomList_query {
 | |
|     flex: 1 1 0;
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 | |
| .mx_MemberList_wrapper {
 | |
|     padding: 10px;
 | |
| }
 | |
| 
 | |
| 
 | |
| .mx_MemberList_invite,
 | |
| .mx_RightPanel_invite {
 | |
|     flex: 0 0 auto;
 | |
|     position: relative;
 | |
|     background-color: $button-bg-color;
 | |
|     border-radius: 4px;
 | |
|     padding: 8px;
 | |
|     margin: 9px;
 | |
|     display: flex;
 | |
|     justify-content: center;
 | |
|     color: $button-fg-color;
 | |
|     font-weight: 600;
 | |
| 
 | |
|     .mx_RightPanel_icon {
 | |
|         padding-right: 5px;
 | |
|         padding-top: 2px;
 | |
|     }
 | |
| }
 | |
| 
 | |
| .mx_MemberList_invite span {
 | |
|     background-image: url('$(res)/img/feather-customised/user-add.svg');
 | |
|     background-repeat: no-repeat;
 | |
|     background-position: center left;
 | |
|     padding-left: 25px;
 | |
| 
 | |
| }
 |