123 lines
1.8 KiB
CSS
123 lines
1.8 KiB
CSS
@media (max-width: 1024px) {
|
|
|
|
/* Mobile Only fix div hidden by bottom navigation bar of mobile browser when using height: 100vh */
|
|
#previewer .preview {
|
|
height: calc(100% - 4em) !important;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
body {
|
|
padding-bottom: 5em;
|
|
}
|
|
|
|
#listing.list .item .size {
|
|
display: none;
|
|
}
|
|
|
|
#listing.list .item .name {
|
|
width: 60%;
|
|
}
|
|
|
|
#more {
|
|
display: inherit
|
|
}
|
|
|
|
body.rtl #dropdown {
|
|
right: unset;
|
|
left: 1em;
|
|
transform-origin: top left;
|
|
}
|
|
|
|
header img {
|
|
display: none;
|
|
}
|
|
|
|
#listing {
|
|
margin-bottom: 5em;
|
|
}
|
|
|
|
body.rtl #listing {
|
|
margin-right: unset;
|
|
}
|
|
|
|
body.rtl .breadcrumbs {
|
|
transform: translateX(16em);
|
|
}
|
|
|
|
body.rtl #nav .wrapper {
|
|
margin-right: unset;
|
|
}
|
|
|
|
body.rtl .dashboard .row {
|
|
margin-right: unset;
|
|
}
|
|
|
|
#search.active {
|
|
display: block;
|
|
}
|
|
|
|
#search.active {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
height: 100%;
|
|
z-index: 9999;
|
|
}
|
|
|
|
#search.active #input {
|
|
border-bottom: 3px solid rgba(0, 0, 0, 0.075);
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
backdrop-filter: blur(6px);
|
|
height: 4em;
|
|
}
|
|
|
|
#search.active>div {
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
#search.active #result {
|
|
height: 100vh
|
|
}
|
|
|
|
#search.active #result>p>i {
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
display: table;
|
|
}
|
|
|
|
#search.active #result ul li a {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: .3em 0;
|
|
margin-right: .3em;
|
|
}
|
|
|
|
#search #input>.action,
|
|
#search #input>i {
|
|
margin-right: 0.3em;
|
|
user-select: none;
|
|
}
|
|
|
|
#result-list {
|
|
padding-top: 3em;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
@media (max-width: 450px) {
|
|
#listing.list .item .modified {
|
|
display: none;
|
|
}
|
|
|
|
#listing.list .item .name {
|
|
width: 100%;
|
|
}
|
|
}
|
|
/* Mobile Specific Styles */
|
|
.mobile-only {
|
|
display: none !important;
|
|
} |