2026-02-21 00:19:04 +01:00
|
|
|
/* Content area */
|
|
|
|
|
.content-area {
|
2026-04-07 22:48:59 +02:00
|
|
|
flex-grow: 1;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
scrollbar-gutter: stable;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-title {
|
2026-04-07 22:48:59 +02:00
|
|
|
font-size: 24px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-bottom: 20px;
|
2026-04-08 11:03:20 +02:00
|
|
|
color: var(--color-text);
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
2026-04-08 10:38:36 +02:00
|
|
|
.page-sticky-header {
|
|
|
|
|
position: sticky;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
padding: 10px 0px;
|
|
|
|
|
top: -20px; /* due to padding top of content-area */
|
|
|
|
|
background-color: var(--color-bg-page);
|
|
|
|
|
z-index: 100; /* ensure header is above image preview */
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-21 00:19:04 +01:00
|
|
|
.actions-bar {
|
2026-04-07 22:48:59 +02:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin: 0 0 12px;
|
|
|
|
|
height: 60px;
|
|
|
|
|
padding: 10px;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-buttons {
|
2026-04-07 22:48:59 +02:00
|
|
|
display: flex;
|
|
|
|
|
gap: 12px;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.empty-state {
|
2026-04-07 22:48:59 +02:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 40px;
|
|
|
|
|
text-align: center;
|
2026-04-08 11:03:20 +02:00
|
|
|
color: var(--color-content-muted);
|
2026-04-07 22:48:59 +02:00
|
|
|
width: 100%;
|
|
|
|
|
height: 300px;
|
|
|
|
|
grid-column: 1 / -1;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
2026-03-25 18:49:38 +01:00
|
|
|
|
|
|
|
|
/* invisible element, permits building of drag element without altering display */
|
|
|
|
|
.drag-preview {
|
2026-04-07 22:48:59 +02:00
|
|
|
position: absolute;
|
|
|
|
|
top: -9999px;
|
|
|
|
|
left: -9999px;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
width: 360px;
|
2026-03-25 18:49:38 +01:00
|
|
|
}
|
|
|
|
|
|
2026-04-03 17:58:14 +02:00
|
|
|
.dragged-items {
|
2026-04-07 22:48:59 +02:00
|
|
|
--dragged-files-list-columns: 36px minmax(200px, 1fr);
|
|
|
|
|
/*display: flex;*/
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
/*width: 360px;*/
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
width: 100%;
|
2026-04-08 11:03:20 +02:00
|
|
|
/*box-shadow: 0 1px 3px var(--color-shadow-xs);*/
|
2026-04-03 17:58:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dragged-items .file-item {
|
2026-04-07 22:48:59 +02:00
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: var(--dragged-files-list-columns);
|
|
|
|
|
column-gap: 12px;
|
|
|
|
|
padding: 12px 15px;
|
2026-04-08 11:03:20 +02:00
|
|
|
/*border-bottom: 1px solid var(--color-border-xfaint);*/
|
2026-04-07 22:48:59 +02:00
|
|
|
align-items: center;
|
2026-04-08 11:03:20 +02:00
|
|
|
background-color: var(--color-bg-surface);
|
2026-04-03 17:58:14 +02:00
|
|
|
}
|
|
|
|
|
|
2026-04-07 22:48:59 +02:00
|
|
|
.dragged-items .file-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
width: 336px;
|
|
|
|
|
height: 46px;
|
2026-03-25 18:49:38 +01:00
|
|
|
}
|
|
|
|
|
|
2026-04-03 17:58:14 +02:00
|
|
|
/* file name, text is wrapped */
|
|
|
|
|
.dragged-items .file-item div:nth-child(2) {
|
2026-04-07 22:48:59 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2026-04-03 17:58:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dragged-items .file-item .file-icon {
|
2026-04-08 11:03:20 +02:00
|
|
|
background-color: var(--color-warning-bg);
|
2026-04-07 22:48:59 +02:00
|
|
|
position: relative;
|
|
|
|
|
width: 36px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
margin-bottom: 0;
|
2026-04-03 17:58:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dragged-items .file-item .file-icon.folder-icon {
|
2026-04-08 11:03:20 +02:00
|
|
|
background-color: var(--color-warning-bg);
|
2026-04-07 22:48:59 +02:00
|
|
|
position: relative;
|
|
|
|
|
width: 36px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
margin-bottom: 0;
|
2026-04-03 17:58:14 +02:00
|
|
|
}
|
|
|
|
|
.dragged-items .file-item .file-icon.folder-icon::before {
|
2026-04-07 22:48:59 +02:00
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
height: 8px;
|
2026-04-08 11:03:20 +02:00
|
|
|
background-color: var(--color-warning-bg-dark);
|
2026-04-07 22:48:59 +02:00
|
|
|
border-radius: 8px 8px 0 0;
|
2026-04-03 17:58:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dragged-items .file-item .file-icon.folder-icon i,
|
|
|
|
|
.dragged-items .file-item .file-icon.folder-icon svg {
|
2026-04-07 22:48:59 +02:00
|
|
|
display: none;
|
2026-04-03 17:58:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dragged-items div.fading {
|
2026-04-08 11:03:20 +02:00
|
|
|
-webkit-mask-image: linear-gradient(to bottom, var(--color-bg-surface) 10%, transparent);
|
|
|
|
|
mask-image: linear-gradient(to bottom, var(--color-bg-surface) 10%, transparent);
|
2026-03-25 18:49:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dragged-items-badge {
|
2026-04-07 22:48:59 +02:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
2026-03-25 18:49:38 +01:00
|
|
|
|
2026-04-07 22:48:59 +02:00
|
|
|
transform: translate(50%, -50%);
|
2026-03-25 18:49:38 +01:00
|
|
|
|
2026-04-08 11:03:20 +02:00
|
|
|
background: var(--color-content-debug-bg);
|
|
|
|
|
color: var(--color-content-debug-text);
|
2026-03-25 18:49:38 +01:00
|
|
|
|
2026-04-07 22:48:59 +02:00
|
|
|
border-radius: 50%;
|
|
|
|
|
min-width: 20px;
|
|
|
|
|
height: 20px;
|
2026-03-25 18:49:38 +01:00
|
|
|
|
2026-04-07 22:48:59 +02:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-03-25 18:49:38 +01:00
|
|
|
|
2026-04-07 22:48:59 +02:00
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: bold;
|
2026-03-25 18:49:38 +01:00
|
|
|
|
2026-04-07 22:48:59 +02:00
|
|
|
padding: 2px;
|
2026-03-25 18:49:38 +01:00
|
|
|
}
|