mirror of https://github.com/vector-im/riot-web
				
				
				
			
		
			
				
	
	
		
			95 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			2.0 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_RightPanel {
 | |
|     overflow-x: hidden;
 | |
|     flex: 0 0 auto;
 | |
|     position: relative;
 | |
|     min-width: 250px;
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
| }
 | |
| 
 | |
| .mx_RightPanel_header {
 | |
|     order: 1;
 | |
| 
 | |
|     border-bottom: 1px solid $primary-hairline-color;
 | |
| 
 | |
|     flex: 0 0 52px;
 | |
| }
 | |
| 
 | |
| /** Fixme - factor this out with the main header **/
 | |
| 
 | |
| .mx_RightPanel_headerButtonGroup {
 | |
|     height: 100%;
 | |
|     display: flex;
 | |
|     background-color: $primary-bg-color;
 | |
|     padding: 0 9px;
 | |
|     align-items: center;
 | |
| }
 | |
| 
 | |
| .mx_RightPanel_headerButton {
 | |
|     cursor: pointer;
 | |
|     flex: 0 0 auto;
 | |
|     vertical-align: top;
 | |
|     margin-top: 4px;
 | |
|     padding-left: 5px;
 | |
|     padding-right: 5px;
 | |
|     text-align: center;
 | |
|     position: relative;
 | |
|     border-bottom: 2px solid transparent;
 | |
| }
 | |
| 
 | |
| .mx_RightPanel_headerButton object {
 | |
|     pointer-events: none;
 | |
| }
 | |
| 
 | |
| .mx_RightPanel_headerButton_highlight {
 | |
|     border-color: $button-bg-color;
 | |
| }
 | |
| 
 | |
| .mx_RightPanel_headerButton_badge {
 | |
|     font-size: 8px;
 | |
|     border-radius: 8px;
 | |
|     color: $accent-fg-color;
 | |
|     background-color: $accent-color;
 | |
|     font-weight: bold;
 | |
|     position: absolute;
 | |
|     top: -4px;
 | |
|     left: 20px;
 | |
|     padding: 2px 4px;
 | |
| }
 | |
| 
 | |
| .mx_RightPanel_collapsebutton {
 | |
|     flex: 1;
 | |
|     text-align: right;
 | |
|     height: 16px;
 | |
|     border: none;
 | |
| }
 | |
| 
 | |
| .mx_RightPanel .mx_MemberList,
 | |
| .mx_RightPanel .mx_MemberInfo,
 | |
| .mx_RightPanel .mx_GroupRoomList,
 | |
| .mx_RightPanel_blank {
 | |
|     order: 2;
 | |
|     flex: 1 1 0;
 | |
| }
 | |
| 
 | |
| .mx_RightPanel .mx_RoomView_messagePanelSpinner {
 | |
|     order: 2;
 | |
|     margin: auto;
 | |
| }
 |