BootstrapAdmin/Bootstrap.Admin/wwwroot/css/site-responsive.css

93 lines
1.4 KiB
CSS

@media (min-width: 568px) {
.sidebar-toggle-box span {
display: inline;
}
.cache-item > :nth-child(2) {
flex: 0 0 auto;
}
.cache-item > :nth-child(3) {
display: block;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
}
@media (min-width: 667px) {
.header .nav {
display: flex;
}
}
@media (min-width: 768px) {
html, body {
height: 100%;
overflow: hidden;
}
.sidebar-toggle-box {
flex: 0 1 auto;
}
.sidebar {
top: 98px;
bottom: 40px;
position: absolute;
overflow: auto;
}
.header {
border-bottom: none;
}
.header .nav {
flex: 1 1 auto;
}
.header, .site-footer {
position: fixed;
}
}
@media (min-width: 769px) {
.sidebar {
display: block;
width: 210px;
}
aside {
transition: none;
transform: none;
top: 0;
right: auto;
}
}
@media (min-height: 672px) {
html, body {
height: 100%;
overflow: hidden;
}
.header, .site-footer {
position: fixed;
}
.sidebar {
top: 98px;
bottom: 40px;
position: absolute;
overflow: auto;
}
aside {
top: 0;
}
.aside.open {
transform: translate(0);
}
}