mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-30 04:03:53 +01:00
49 lines
1.2 KiB
CSS
49 lines
1.2 KiB
CSS
[is="component_filesystem"] .component_filesystem {
|
|
padding-top: 3px;
|
|
}
|
|
[is="component_filesystem"] .component_filesystem [data-target="dragselect"] {
|
|
position: fixed;
|
|
border-radius: 2px;
|
|
z-index: 3;
|
|
background: var(--primary);
|
|
border: 2px solid rgba(0, 0, 0, 0.1);
|
|
opacity: 0.25;
|
|
width: 500px;
|
|
height: 100px;
|
|
}
|
|
[is="component_filesystem"] .component_filesystem [data-type="list"] {
|
|
grid-gap: 2px;
|
|
}
|
|
[is="component_filesystem"] .component_filesystem [data-type="grid"] {
|
|
grid-gap: 5px;
|
|
}
|
|
@media screen and (min-width: 1100px) {
|
|
.component_filemanager_shell [data-bind="sidebar"]:not(.hidden) ~ div
|
|
[is="component_filesystem"] .component_filesystem [data-type="grid"] {
|
|
grid-gap: 8px;
|
|
}
|
|
}
|
|
[is="component_filesystem"] .empty {
|
|
text-align: center;
|
|
font-weight: 100;
|
|
|
|
margin: 0 auto;
|
|
opacity: 0.9;
|
|
font-size: 1.2rem;
|
|
color: var(--light);
|
|
height: 100%;
|
|
opacity: 0.8;
|
|
font-family: sans-serif;
|
|
|
|
padding: 50px 0;
|
|
@media screen and (max-width: 420px) {
|
|
padding: 30px;
|
|
}
|
|
}
|
|
[is="component_filesystem"] .empty .component_icon {
|
|
height: 200px;
|
|
max-width: 100%;
|
|
}
|
|
[is="component_filesystem"] .empty .label {
|
|
margin-top: -40px;
|
|
}
|