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
|
|
|
/* Dashboard title bar — welcome heading with tenant context. */
|
2026-02-04 23:31:53 +01:00
|
|
|
.app-dashboard-titlebar {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
margin-block-end: var(--app-spacing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-dashboard-titlebar h1,
|
|
|
|
|
.app-dashboard-titlebar h2,
|
|
|
|
|
.app-dashboard-titlebar h3,
|
|
|
|
|
.app-dashboard-titlebar h4,
|
|
|
|
|
.app-dashboard-titlebar h5,
|
|
|
|
|
.app-dashboard-titlebar h6 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-dashboard-titlebar button,
|
|
|
|
|
.app-dashboard-titlebar [role="button"] {
|
|
|
|
|
--app-button-padding-horizontal: 10px;
|
|
|
|
|
--app-button-padding-vertical: 6px;
|
2026-03-22 15:47:55 +01:00
|
|
|
font-size: var(--text-sm);
|
2026-02-04 23:31:53 +01:00
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-dashboard-titlebar-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-dashboard-titlebar h1 i {
|
|
|
|
|
background: var(--app-muted-border-color);
|
|
|
|
|
width: 35px;
|
|
|
|
|
height: 29px;
|
2026-03-22 15:47:55 +01:00
|
|
|
font-size: 15px; /* icon-font metric — intentional px */
|
2026-02-04 23:31:53 +01:00
|
|
|
border-radius: var(--app-border-radius);
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: var(--app-contrast);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-dashboard-titlebar h1:has(i) {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 7px;
|
2026-03-22 15:47:55 +01:00
|
|
|
line-height: var(--leading-none);
|
2026-02-04 23:31:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-dashboard-titlebar h1 a:hover i {
|
|
|
|
|
background: var(--app-border);
|
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
|
|
|
}
|
|
|
|
|
}
|