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
|
|
|
/* List toolbar — page-size selector, filter toggle, and search controls above grids. */
|
2026-03-04 15:56:58 +01:00
|
|
|
.app-list-toolbar {
|
2026-04-22 19:56:23 +02:00
|
|
|
--app-list-toolbar-gap: 10px;
|
|
|
|
|
--app-list-toolbar-padding-x: 10px;
|
|
|
|
|
--app-list-toolbar-padding-y: 6px;
|
2026-03-04 15:56:58 +01:00
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
flex-wrap: wrap;
|
2026-04-22 19:56:23 +02:00
|
|
|
gap: var(--app-list-toolbar-gap);
|
|
|
|
|
margin-bottom: var(--app-spacing);
|
2026-03-04 15:56:58 +01:00
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-03-04 15:56:58 +01:00
|
|
|
.app-list-toolbar > * {
|
2026-04-22 19:56:23 +02:00
|
|
|
margin: 0;
|
|
|
|
|
width: auto;
|
|
|
|
|
font-size: var(--text-sm);
|
|
|
|
|
height: auto;
|
2026-03-04 15:56:58 +01:00
|
|
|
}
|
2026-04-22 19:56:23 +02:00
|
|
|
|
|
|
|
|
.app-list-toolbar :is(.app-field, label, button, [role="button"], input, select, .multi-select) {
|
|
|
|
|
margin: 0;
|
|
|
|
|
width: auto;
|
2026-03-04 15:56:58 +01:00
|
|
|
}
|
2026-04-22 19:56:23 +02:00
|
|
|
|
|
|
|
|
.app-list-toolbar :is(button, [role="button"], input, select) {
|
|
|
|
|
--app-form-element-spacing-horizontal: var(--app-list-toolbar-padding-x);
|
|
|
|
|
--app-form-element-spacing-vertical: var(--app-list-toolbar-padding-y);
|
|
|
|
|
font-size: var(--text-sm);
|
|
|
|
|
min-height: calc(var(--app-list-toolbar-padding-y) * 2 + 1.4em);
|
2026-03-04 15:56:58 +01:00
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-04-22 19:56:23 +02:00
|
|
|
.app-list-toolbar > button,
|
|
|
|
|
.app-list-toolbar > [role="button"] {
|
|
|
|
|
padding: var(--app-list-toolbar-padding-y) var(--app-list-toolbar-padding-x);
|
2026-03-04 15:56:58 +01:00
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-03-04 15:56:58 +01:00
|
|
|
.app-list-toolbar
|
|
|
|
|
input:not(
|
|
|
|
|
[type="checkbox"],
|
2026-04-22 19:56:23 +02:00
|
|
|
[type="radio"],
|
|
|
|
|
[type="range"],
|
|
|
|
|
[type="file"]
|
2026-03-04 15:56:58 +01:00
|
|
|
):is(
|
|
|
|
|
[type="date"],
|
|
|
|
|
[type="datetime-local"],
|
|
|
|
|
[type="month"],
|
|
|
|
|
[type="time"],
|
|
|
|
|
[type="week"]
|
|
|
|
|
) {
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-04-22 19:56:23 +02:00
|
|
|
.app-list-toolbar > label > span,
|
|
|
|
|
.app-list-toolbar > .app-field > span {
|
2026-03-04 15:56:58 +01:00
|
|
|
display: block;
|
2026-04-22 19:56:23 +02:00
|
|
|
font-size: var(--text-xs);
|
|
|
|
|
margin-bottom: 2px;
|
2026-03-04 15:56:58 +01:00
|
|
|
}
|
|
|
|
|
|
2026-04-22 19:56:23 +02:00
|
|
|
.app-list-toolbar .app-grid-page-size {
|
|
|
|
|
margin-inline-start: auto;
|
2026-03-05 11:17:42 +01:00
|
|
|
}
|
|
|
|
|
|
2026-04-22 19:56:23 +02:00
|
|
|
.app-list-toolbar .app-grid-page-size select {
|
|
|
|
|
min-width: 84px;
|
2026-03-05 11:17:42 +01:00
|
|
|
}
|
|
|
|
|
|
2026-04-22 19:56:23 +02:00
|
|
|
.app-list-toolbar .multi-select {
|
|
|
|
|
width: 200px;
|
2026-03-05 11:17:42 +01:00
|
|
|
}
|
|
|
|
|
|
2026-04-22 19:56:23 +02:00
|
|
|
.app-list-toolbar .multi-select .multi-select-header .multi-select-header-placeholder {
|
2026-03-22 15:47:55 +01:00
|
|
|
font-size: var(--text-sm);
|
2026-03-04 15:56:58 +01:00
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-03-04 15:56:58 +01:00
|
|
|
.app-list-toolbar .multi-select .multi-select-header,
|
|
|
|
|
.app-list-toolbar .multi-select .multi-select-option,
|
|
|
|
|
.app-list-toolbar .multi-select .multi-select-all {
|
2026-02-04 23:31:53 +01:00
|
|
|
min-height: unset;
|
|
|
|
|
padding-left: 5px;
|
2026-03-04 15:56:58 +01:00
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-04-22 19:56:23 +02:00
|
|
|
.app-list-toolbar span.multi-select-header-option {
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: 0;
|
|
|
|
|
padding: 0 0 0 3px;
|
|
|
|
|
font-size: var(--text-xs);
|
2026-03-04 15:56:58 +01:00
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
|
2026-04-22 19:56:23 +02:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.app-list-toolbar .app-grid-page-size {
|
|
|
|
|
margin-inline-start: 0;
|
|
|
|
|
}
|
2026-03-04 15:56:58 +01:00
|
|
|
}
|
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
|
|
|
}
|