117 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			SCSS
		
	
	
| /*
 | |
| Copyright 2021 The Matrix.org Foundation C.I.C
 | |
| 
 | |
| 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_LocationPicker {
 | |
|     width: 375px;
 | |
|     height: 460px;
 | |
| 
 | |
|     border-radius: 8px;
 | |
| 
 | |
|     position: relative;
 | |
| 
 | |
|     #mx_LocationPicker_map {
 | |
|         height: 100%;
 | |
|         border-radius: 8px;
 | |
| 
 | |
|         .maplibregl-ctrl.maplibregl-ctrl-group {
 | |
|             margin-top: 50px;
 | |
|         }
 | |
| 
 | |
|         .maplibregl-ctrl-bottom-right {
 | |
|             bottom: 68px;
 | |
|         }
 | |
| 
 | |
|         .maplibregl-user-location-accuracy-circle {
 | |
|             display: none;
 | |
|         }
 | |
| 
 | |
|         .maplibregl-user-location-dot {
 | |
|             display: none;
 | |
|         }
 | |
| 
 | |
|         .mx_MLocationBody_markerBorder {
 | |
|             width: 31px;
 | |
|             height: 31px;
 | |
|             border-radius: 50%;
 | |
|             background-color: $accent;
 | |
|             filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.2));
 | |
| 
 | |
|             .mx_BaseAvatar {
 | |
|                 margin-top: 2px;
 | |
|                 margin-left: 2px;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         .mx_MLocationBody_pointer {
 | |
|             position: absolute;
 | |
|             bottom: -3px;
 | |
|             left: 12px;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     .mx_LocationPicker_footer {
 | |
|         position: absolute;
 | |
|         bottom: 0px;
 | |
|         width: 100%;
 | |
| 
 | |
|         .mx_Dialog_buttons {
 | |
|             text-align: center;
 | |
| 
 | |
|             /* Note the `button` prefix and `not()` clauses are needed to make
 | |
|                these selectors more specific than those in _common.scss. */
 | |
| 
 | |
|             button.mx_Dialog_primary:not(.mx_Dialog_nonDialogButton):not(.mx_AccessibleButton) {
 | |
|                 margin: 0px 0px 16px 0px;
 | |
|                 min-width: 328px;
 | |
|                 min-height: 48px;
 | |
|             }
 | |
| 
 | |
|             button.mx_LocationPicker_cancelButton {
 | |
|                 border: none;
 | |
|                 border-radius: 12px;
 | |
|                 position: absolute;
 | |
|                 top: -360px;
 | |
|                 right: 5px;
 | |
|                 background-color: $quinary-content;
 | |
|                 width: 24px;
 | |
|                 height: 24px;
 | |
|                 padding: 0px;
 | |
|                 color: rgba(0, 0, 0, 0);
 | |
|             }
 | |
| 
 | |
|             button.mx_LocationPicker_cancelButton::before {
 | |
|                 content: '';
 | |
|                 background-color: $primary-content;
 | |
|                 min-width: 8px;
 | |
|                 min-height: 8px;
 | |
|                 width: 8px;
 | |
|                 height: 8px;
 | |
|                 position: absolute;
 | |
|                 margin: 4px 8px;
 | |
|                 mask-repeat: no-repeat;
 | |
|                 mask-size: contain;
 | |
|                 mask-position: center;
 | |
|                 mask-image: url('$(res)/img/cancel-small.svg');
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     .mx_LocationPicker_error {
 | |
|         color: red;
 | |
|         margin: auto;
 | |
|     }
 | |
| }
 |