2026-04-13 11:04:13 +02:00
|
|
|
/* ── Scrollbar ── */
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 6px;
|
|
|
|
|
}
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background: var(--color-bg-surface);
|
|
|
|
|
}
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
background: var(--color-accent);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
* {
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
scrollbar-color: var(--color-accent) var(--color-bg-surface);
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
}
|