framework7-without-localstorage
Version:
Full featured mobile HTML framework for building iOS & Android apps
32 lines (31 loc) • 654 B
text/less
/* === Statusbar overlay === */
html.with-statusbar-overlay .framework7-root {
padding-top: 24px;
box-sizing: border-box;
.statusbar-overlay {
display: block;
}
.panel {
padding-top: 24px;
}
}
.statusbar-overlay {
background: @darkThemeColor;
z-index: 10000; // A bit lower than .modals-overlay
position: absolute;
left: 0;
top: 0;
height: 24px;
width: 100%;
display: none;
.transition(@panelsDuration);
}
html.with-statusbar-overlay.ios .framework7-root {
padding-top: 20px;
.panel {
padding-top: 20px;
}
}
html.ios .statusbar-overlay {
height: 20px;
}