mapcomplete/css/mobile.css

109 lines
2.2 KiB
CSS
Raw Normal View History

/*
Contains tweaks for small screens
*/
.only-on-mobile {
2021-01-07 03:50:12 +00:00
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 {
2021-01-07 03:50:12 +00:00
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;
}
2020-11-16 00:59:30 +00:00
.leaflet-popup {
2020-11-16 00:59:30 +00:00
/* On mobile, the popups are shown as a full-screen element */
display: none;
2020-11-16 00:59:30 +00:00
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;
}
2020-12-02 20:37:53 +00:00
.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;
}
}