mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
3f1951b5b8
* add labs flag feature_location_share_pin_drop Signed-off-by: Kerry Archibald <kerrya@element.io> * split LocationButton into two components Signed-off-by: Kerry Archibald <kerrya@element.io> * rethemendex Signed-off-by: Kerry Archibald <kerrya@element.io> * copyright Signed-off-by: Kerry Archibald <kerrya@element.io> * one more (c) Signed-off-by: Kerry Archibald <kerrya@element.io> * i18n Signed-off-by: Kerry Archibald <kerrya@element.io> * empty line Signed-off-by: Kerry Archibald <kerrya@element.io> * use same matrix client import Signed-off-by: Kerry Archibald <kerrya@element.io>
130 lines
3.5 KiB
SCSS
130 lines
3.5 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 {
|
|
border-radius: 8px;
|
|
|
|
height: 100%;
|
|
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: 11px;
|
|
width: 9px;
|
|
height: 5px;
|
|
|
|
&::before {
|
|
mask-image: url('$(res)/img/location/pointer.svg');
|
|
mask-position: center;
|
|
mask-repeat: no-repeat;
|
|
mask-size: 9px;
|
|
content: '';
|
|
display: inline-block;
|
|
width: 9px;
|
|
height: 5px;
|
|
position: absolute;
|
|
background-color: $accent;
|
|
}
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|