add composer-unused, comprehensive docs, and project restructure
- Add icanhazstring/composer-unused as dev dependency for dependency hygiene checks
- Add German documentation (docs/) covering architecture, conventions, workflows, and developer checklists
- Add API layer (ApiAuth, ApiBootstrap, ApiResponse), audit, scheduler, custom fields, and SSO services
- Add Microsoft OIDC SSO, API token management, and user lifecycle features
- Add swagger-ui vendor integration and OpenAPI spec
- Add production Docker setup and bin/ scripts
- Update composer dependencies, config, templates, and frontend assets throughout
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-22 15:27:35 +01:00
|
|
|
@layer components {
|
2026-03-13 22:21:37 +01:00
|
|
|
/* Page editor — Editor.js integration styles for CMS content editing. */
|
2026-03-12 14:09:06 +01:00
|
|
|
.app-page-header {
|
2026-02-04 23:31:53 +01:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-03-12 14:09:06 +01:00
|
|
|
justify-content: space-between;
|
2026-02-04 23:31:53 +01:00
|
|
|
gap: var(--app-spacing);
|
2026-03-12 14:09:06 +01:00
|
|
|
margin-bottom: var(--app-spacing);
|
|
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-03-12 14:09:06 +01:00
|
|
|
.app-page-header > div {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: var(--app-spacing);
|
|
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-03-12 14:09:06 +01:00
|
|
|
.app-page-header > div > * {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-03-12 14:09:06 +01:00
|
|
|
.app-page-header button,
|
|
|
|
|
.app-page-header input {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-03-12 14:09:06 +01:00
|
|
|
.app-page-header h1 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-03-12 14:09:06 +01:00
|
|
|
label.app-field > span {
|
2026-02-04 23:31:53 +01:00
|
|
|
display: block;
|
2026-03-12 14:09:06 +01:00
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-03-12 14:09:06 +01:00
|
|
|
label.app-field > small {
|
2026-02-04 23:31:53 +01:00
|
|
|
display: block;
|
2026-03-12 14:09:06 +01:00
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-03-12 14:09:06 +01:00
|
|
|
.page-editor-actions {
|
|
|
|
|
margin-top: var(--app-spacing);
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: var(--app-spacing);
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-editor[data-edit-mode="view"] .page-editor-actions {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-editor[data-edit-mode="view"] .ce-toolbar,
|
|
|
|
|
.page-editor[data-edit-mode="view"] .ce-inline-toolbar,
|
|
|
|
|
.page-editor[data-edit-mode="view"] .ce-popover {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ce-block__content,
|
|
|
|
|
.ce-toolbar__content {
|
|
|
|
|
max-width: 90% !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ce-editorjsColumns_wrapper .ce-toolbar__content,
|
|
|
|
|
.ce-editorjsColumns_wrapper .ce-block__content {
|
|
|
|
|
max-width: 100% !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ce-popover-item[data-item-name="columns"] svg {
|
2026-02-04 23:31:53 +01:00
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
2026-03-12 14:09:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-details-aside-section button {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 968px) {
|
|
|
|
|
.app-page-action-card {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: calc(var(--app-spacing) * 4);
|
|
|
|
|
}
|
|
|
|
|
}
|
add composer-unused, comprehensive docs, and project restructure
- Add icanhazstring/composer-unused as dev dependency for dependency hygiene checks
- Add German documentation (docs/) covering architecture, conventions, workflows, and developer checklists
- Add API layer (ApiAuth, ApiBootstrap, ApiResponse), audit, scheduler, custom fields, and SSO services
- Add Microsoft OIDC SSO, API token management, and user lifecycle features
- Add swagger-ui vendor integration and OpenAPI spec
- Add production Docker setup and bin/ scripts
- Update composer dependencies, config, templates, and frontend assets throughout
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-22 15:27:35 +01:00
|
|
|
}
|