mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-23 08:38:57 +08:00
491f0cd08a
* Copyright headers 1 * Licence headers 2 * Copyright Headers 3 * Copyright Headers 4 * Copyright Headers 5 * Copyright Headers 6 * Copyright headers 7 * Add copyright headers for html and config file * Replace license files and update package.json * Update with CLA * lint
93 lines
2.1 KiB
Plaintext
93 lines
2.1 KiB
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2021 The Matrix.org Foundation C.I.C
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
.mx_LocationPicker {
|
|
border-radius: 8px;
|
|
|
|
height: 100%;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
/* when there are errors loading the map */
|
|
/* the canvas is still inserted */
|
|
/* and can overlap error message/close buttons */
|
|
/* hide it */
|
|
&.mx_LocationPicker_hasError {
|
|
.maplibregl-canvas-container,
|
|
.maplibregl-control-container {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
#mx_LocationPicker_map {
|
|
border-top-left-radius: inherit;
|
|
border-top-right-radius: inherit;
|
|
flex: 1;
|
|
|
|
.maplibregl-ctrl.maplibregl-ctrl-group,
|
|
.maplibregl-ctrl.maplibregl-ctrl-attrib {
|
|
margin-right: $spacing-16;
|
|
}
|
|
|
|
.maplibregl-ctrl.maplibregl-ctrl-group {
|
|
/* place below the close button */
|
|
/* padding-16 + 24px close button + padding-10 */
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.maplibregl-user-location-accuracy-circle {
|
|
display: none;
|
|
}
|
|
|
|
.maplibregl-user-location-dot {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.mx_LocationPicker_footer {
|
|
flex: 0;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: $spacing-16;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: stretch;
|
|
|
|
border-bottom-left-radius: inherit;
|
|
border-bottom-right-radius: inherit;
|
|
|
|
background-color: $header-panel-bg-color;
|
|
}
|
|
}
|
|
|
|
.mx_LocationPicker_pinText {
|
|
position: absolute;
|
|
top: $spacing-16;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
height: 0;
|
|
pointer-events: none;
|
|
|
|
span {
|
|
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
|
|
border-radius: 8px;
|
|
padding: $spacing-8;
|
|
background-color: $background;
|
|
color: $primary-content;
|
|
|
|
font-size: $font-12px;
|
|
}
|
|
}
|
|
|
|
.mx_LocationPicker_submitButton {
|
|
width: 100%;
|
|
height: 48px;
|
|
}
|