feat(cms): add storage based website content management

This commit is contained in:
Schubert Ferenc 2026-07-04 00:58:33 +02:00
parent 7d5689cfa4
commit 12d31f5468
31 changed files with 1347 additions and 158 deletions

View file

@ -985,6 +985,171 @@ h3 {
overflow-wrap: anywhere;
}
.content-manager {
display: grid;
gap: 18px;
}
.content-editor-layout {
display: grid;
grid-template-columns: 220px minmax(0, 1fr);
gap: 18px;
align-items: start;
}
.content-tabs {
position: sticky;
top: 18px;
display: grid;
gap: 6px;
}
.content-tabs button,
.content-preview-toolbar button {
border: 1px solid var(--line);
border-radius: 8px;
background: #fff;
color: var(--navy);
font-weight: 800;
padding: 10px 12px;
text-align: left;
}
.content-tabs button[aria-current="page"],
.content-preview-toolbar button[aria-current="true"] {
border-color: var(--navy);
background: var(--navy);
color: #fff;
}
.content-editor {
display: grid;
gap: 16px;
min-width: 0;
}
.content-editor-top {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.content-editor-top h2 {
margin-bottom: 0;
}
.content-editor-heading {
margin: 14px 0 0;
border-top: 1px solid var(--line);
padding-top: 16px;
color: var(--navy);
}
.content-field-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}
.content-field-grid label,
.content-editor label {
display: grid;
gap: 7px;
color: var(--ink);
font-size: 14px;
font-weight: 800;
}
.content-field-grid input,
.content-field-grid select,
.content-field-grid textarea,
.content-editor input,
.content-editor select,
.content-editor textarea {
width: 100%;
border: 1px solid #cfd8e5;
border-radius: 8px;
background: #fff;
padding: 11px 12px;
color: var(--ink);
}
.content-editor textarea {
min-height: 110px;
resize: vertical;
}
.content-repeaters {
display: grid;
gap: 12px;
}
.content-repeater {
display: grid;
gap: 12px;
border: 1px solid var(--line);
border-radius: 8px;
background: #f8fafc;
padding: 14px;
}
.content-preview-card {
overflow: hidden;
}
.content-preview-toolbar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-bottom: 18px;
}
.content-preview-toolbar h2 {
margin-bottom: 0;
}
.content-preview-toolbar div {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.content-preview {
width: 100%;
max-width: 100%;
min-height: 320px;
border: 1px solid var(--line);
border-radius: 8px;
background:
linear-gradient(90deg, rgba(6, 24, 52, 0.95), rgba(8, 42, 96, 0.72)),
url("/workbench-signal.svg"),
#07172d;
background-size: cover;
color: #fff;
padding: 34px;
}
.content-preview.tablet {
max-width: 760px;
margin: 0 auto;
}
.content-preview.mobile {
max-width: 390px;
margin: 0 auto;
}
.content-preview h1 {
font-size: clamp(30px, 5vw, 52px);
}
.content-preview .lead,
.content-preview p {
color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 1080px) and (min-width: 861px) {
.brand-logo {
width: 236px;
@ -1095,4 +1260,17 @@ h3 {
grid-template-columns: 1fr;
gap: 4px;
}
.content-editor-layout {
grid-template-columns: 1fr;
}
.content-tabs {
position: static;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.content-field-grid {
grid-template-columns: 1fr;
}
}