2020-09-24 00:33:23 +02:00
|
|
|
/*
|
|
|
|
Contains tweaks for small screens
|
|
|
|
*/
|
|
|
|
|
2022-06-29 19:14:57 +02:00
|
|
|
@media only screen and (min-width: 769px) and (min-height: 700px) {
|
2020-09-24 00:33:23 +02:00
|
|
|
|
|
|
|
.only-on-mobile {
|
2021-06-16 21:23:03 +02:00
|
|
|
display: none !important;
|
2020-09-24 00:33:23 +02:00
|
|
|
}
|
2022-06-29 19:14:57 +02:00
|
|
|
|
2021-06-16 21:23:03 +02:00
|
|
|
}
|
2021-09-09 00:05:51 +02:00
|
|
|
|
2022-03-10 23:18:40 +01:00
|
|
|
|
2022-12-13 03:46:53 +01:00
|
|
|
@media only screen and (min-height: 175px) and (min-width: 175px) {
|
2022-03-10 23:18:40 +01:00
|
|
|
.very-small-screen {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hidden-on-very-small-screen {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-12-13 03:46:53 +01:00
|
|
|
@media not screen and (min-height: 175px) and (min-width: 175px) {
|
2022-03-10 23:18:40 +01:00
|
|
|
.very-small-screen {
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden-on-very-small-screen {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-06-29 19:14:57 +02:00
|
|
|
@media only screen and (max-width: 768px), only screen and (max-height: 700px) {
|
2021-06-16 21:23:03 +02:00
|
|
|
|
2021-01-17 21:04:37 +01:00
|
|
|
|
2020-09-24 00:33:23 +02:00
|
|
|
.hidden-on-mobile {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#centermessage {
|
|
|
|
top: 30%;
|
|
|
|
left: 15%;
|
|
|
|
width: 60%;
|
|
|
|
|
|
|
|
}
|
2021-01-17 21:04:37 +01:00
|
|
|
|
2020-09-24 00:33:23 +02:00
|
|
|
.add-popup-all-buttons {
|
|
|
|
/* Buttons in the 'add new point' have a default of 50vh maxheight which is ugly in the new context*/
|
|
|
|
max-height: unset !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#messagesboxmobile {
|
|
|
|
display: block;
|
2021-01-17 21:04:37 +01:00
|
|
|
|
2020-09-24 00:33:23 +02:00
|
|
|
position: absolute;
|
|
|
|
z-index: 10000;
|
|
|
|
width: 100vw;
|
2020-11-23 02:55:18 +01:00
|
|
|
height: 100vh;
|
2020-09-24 00:33:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-21 03:38:12 +01:00
|
|
|
@media only screen and (max-width: 768px) {
|
2021-09-22 05:02:09 +02:00
|
|
|
#leafletDiv .leaflet-control-attribution {
|
2021-02-21 03:38:12 +01:00
|
|
|
display: none;
|
|
|
|
}
|
2021-09-09 00:05:51 +02:00
|
|
|
|
2021-06-15 16:18:58 +02:00
|
|
|
.leaflet-popup {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-02-21 03:38:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-27 13:39:00 +01:00
|
|
|
|
|
|
|
|