56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			SCSS
		
	
	
| /*
 | |
| Copyright 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.
 | |
| */
 | |
| 
 | |
| // CSS voodoo to support a gemini-scrollbar for the contents of the dialog
 | |
| .mx_Dialog_unknownDevice .mx_Dialog {
 | |
|     // ideally we'd shrink the height to fit when needed, but in practice this
 | |
|     // is a pain in the ass. plus might as well make the dialog big given how
 | |
|     // important it is.
 | |
|     height: 100%;
 | |
| }
 | |
| 
 | |
| .mx_UnknownDeviceDialog {
 | |
|     height: 100%;
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
| }
 | |
| 
 | |
| .mx_UnknownDeviceDialog ul {
 | |
|     list-style: none;
 | |
|     padding: 0;
 | |
| }
 | |
| // userid
 | |
| .mx_UnknownDeviceDialog p {
 | |
|     font-weight: bold;
 | |
|     font-size: 16px;
 | |
| }
 | |
| 
 | |
| .mx_UnknownDeviceDialog .mx_DeviceVerifyButtons {
 | |
|     flex-direction: row !important;
 | |
| }
 | |
| 
 | |
| .mx_UnknownDeviceDialog .mx_Dialog_content {
 | |
|     margin-bottom: 24px;
 | |
| }
 | |
| 
 | |
| .mx_UnknownDeviceDialog_deviceList > li {
 | |
|     padding: 4px;
 | |
| }
 | |
| 
 | |
| .mx_UnknownDeviceDialog_deviceList > li > * {
 | |
|     padding-bottom: 0;
 | |
| }
 |