cavern/admin/theme/admin.css
2019-05-31 00:07:47 +08:00

62 lines
1.0 KiB
CSS

.pusher {
overflow-x: hidden;
}
/* nav bar */
button#toggleSidebar {
border-radius: 0;
border-bottom-right-radius: .28571rem;
visibility: hidden;
}
.pusher > nav {
z-index: 14;
position: sticky;
position: -webkit-sticky; /* safari */
left: 0;
top: 0;
}
.pusher > .progress:not(.invisible) + nav {
margin: -3px; /* to overlap progress */
}
/* loader */
.pusher > .progress.invisible {
display: none;
}
/* content */
#header {
margin-top: 5px;
}
#content {
padding-bottom: 1.5em;
}
/* config */
#config::after {
display: block;
content: '';
clear: both;
}
@media (max-width: 768px) {
.ts.visible.sidebar:not(.overlapped) ~ .pusher.squeezable {
/* RWD fix */
width: 100vw;
left: 0;
}
button#toggleSidebar {
visibility: visible;
}
.visible.sidebar ~ .pusher > nav {
width: calc(100vw - 230px);
transform: translate3d(230px, 0, 0);
transition: transform .45s cubic-bezier(0.23, 1, 0.32, 1);
will-change: transform;
}
}