2021-05-01 20:13:13 +02:00
|
|
|
.map {
|
2021-05-01 12:16:10 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mapSelection img {
|
|
|
|
display: inline;
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
vertical-align: -0.15em;
|
|
|
|
}
|
|
|
|
|
2020-06-25 14:00:38 +02:00
|
|
|
/* modify the cursor for the Leaflet map */
|
2020-06-04 19:19:29 +02:00
|
|
|
.leaflet-container {
|
|
|
|
cursor: crosshair;
|
|
|
|
}
|
|
|
|
|
2020-06-01 21:13:02 +02:00
|
|
|
#panorama {
|
2020-06-02 21:49:37 +02:00
|
|
|
position: absolute;
|
2020-06-01 21:13:02 +02:00
|
|
|
z-index: 1;
|
2020-06-02 21:49:37 +02:00
|
|
|
visibility: hidden;
|
2020-06-01 21:13:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#noPano {
|
|
|
|
display: flex;
|
2020-06-24 22:37:33 +02:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-06-01 21:13:02 +02:00
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
visibility: hidden;
|
|
|
|
background: #cccccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#noPano>p {
|
2020-06-24 22:37:33 +02:00
|
|
|
text-align: center;
|
2020-06-01 21:13:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#control {
|
|
|
|
position: absolute;
|
2020-06-25 14:00:38 +02:00
|
|
|
top: 10px;
|
2020-06-06 02:18:12 +02:00
|
|
|
right: 10px;
|
2020-06-01 21:13:02 +02:00
|
|
|
width: 125px;
|
|
|
|
z-index: 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#placeControl {
|
|
|
|
position: absolute;
|
2020-06-06 02:18:12 +02:00
|
|
|
right: 10px;
|
2020-06-01 21:13:02 +02:00
|
|
|
z-index: 3;
|
2020-06-02 21:49:37 +02:00
|
|
|
width: 100px;
|
2020-06-01 21:13:02 +02:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
2020-06-02 21:49:37 +02:00
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
#deleteButton {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-06-02 21:49:37 +02:00
|
|
|
@media screen and (max-width: 999px) and (min-height: 600px) {
|
|
|
|
#map.selected {
|
2020-06-25 14:00:38 +02:00
|
|
|
height: 50%;
|
2020-06-02 21:49:37 +02:00
|
|
|
}
|
|
|
|
#panorama, #noPano {
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
2020-06-25 14:00:38 +02:00
|
|
|
height: 50%;
|
2020-06-02 21:49:37 +02:00
|
|
|
}
|
|
|
|
#placeControl {
|
2020-06-25 14:00:38 +02:00
|
|
|
top: calc(50% + 10px);
|
2020-06-02 21:49:37 +02:00
|
|
|
}
|
2021-05-01 20:20:39 +02:00
|
|
|
.hideOnMobile {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-06-02 21:49:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1000px), (max-height: 599px) {
|
|
|
|
#map.selected {
|
2020-06-25 14:00:38 +02:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2020-06-02 21:49:37 +02:00
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
#panorama, #noPano {
|
2020-06-25 14:00:38 +02:00
|
|
|
top: 0;
|
2020-06-02 21:49:37 +02:00
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 50%;
|
|
|
|
}
|
2020-06-06 02:18:12 +02:00
|
|
|
#placeControl {
|
2020-06-25 14:00:38 +02:00
|
|
|
top: 10px;
|
2020-06-02 21:49:37 +02:00
|
|
|
}
|
2020-06-06 02:18:12 +02:00
|
|
|
#modified.selected {
|
|
|
|
right: calc(50% + 10px);
|
|
|
|
}
|
2020-06-02 21:49:37 +02:00
|
|
|
#control.selected {
|
|
|
|
right: calc(50% + 10px);
|
|
|
|
}
|
|
|
|
}
|