108 lines
2.2 KiB
CSS
108 lines
2.2 KiB
CSS
/*
|
|
Contains tweaks for small screens
|
|
*/
|
|
|
|
.only-on-mobile {
|
|
display: none !important;
|
|
background-color: var(--background-color);
|
|
color: var(--foreground-color);
|
|
}
|
|
|
|
@media only screen and (max-width: 600px), only screen and (max-height: 600px) {
|
|
|
|
.only-on-mobile {
|
|
display: unset !important;
|
|
background-color: var(--background-color);
|
|
color: var(--foreground-color);
|
|
}
|
|
|
|
.hidden-on-mobile {
|
|
display: none !important;
|
|
}
|
|
|
|
#messagesbox {
|
|
display: none;
|
|
background-color: var(--background-color);
|
|
color: var(--foreground-color);
|
|
}
|
|
|
|
#help-button-mobile{
|
|
display: unset;
|
|
pointer-events: all;
|
|
}
|
|
|
|
#help-button-mobile div {
|
|
box-shadow: 0 0 10px #0006;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#geolocate-button {
|
|
display: block;
|
|
}
|
|
|
|
.leaflet-popup {
|
|
/* On mobile, the popups are shown as a full-screen element */
|
|
display: none;
|
|
visibility: hidden;
|
|
}
|
|
|
|
#centermessage {
|
|
top: 30%;
|
|
left: 15%;
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
.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;
|
|
|
|
position: absolute;
|
|
z-index: 10000;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
#welcomeMessage {
|
|
display: inline-block;
|
|
background-color: var(--background-color);
|
|
border-radius: 0;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
max-height: max-content;
|
|
box-shadow: unset;
|
|
overflow-y: unset;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
/* Portrait */
|
|
#userbadge-and-search {
|
|
display: inline-block;
|
|
width: auto;
|
|
max-width: 100vw;
|
|
}
|
|
|
|
.userbadge-login {
|
|
min-width: unset;
|
|
width: calc(100vw - 5px);
|
|
}
|
|
|
|
#topleft-tools {
|
|
padding: 0.2em !important;
|
|
padding-top: 0.3em !important;
|
|
}
|
|
|
|
#userbadge {
|
|
margin-bottom: 0.3em;
|
|
}
|
|
}
|
|
|
|
|