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
|
|
|
/* Blockquote styling — left-bordered quote blocks with accent color. */
|
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
|
|
|
blockquote {
|
|
|
|
|
--blockquote-bg: var(--app-blockquote-background-color);
|
|
|
|
|
--blockquote-color: inherit;
|
|
|
|
|
--blockquote-border: var(--app-blockquote-border-color);
|
|
|
|
|
--blockquote-footer-color: var(--app-blockquote-footer-color);
|
2026-02-04 23:31:53 +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
|
|
|
display: block;
|
|
|
|
|
margin: var(--app-typography-spacing-vertical) 0;
|
|
|
|
|
padding: var(--app-spacing);
|
|
|
|
|
border-right: none;
|
|
|
|
|
border-left: 0.25rem solid var(--app-blockquote-border-color);
|
|
|
|
|
border-inline-start: 0.25rem solid var(--app-blockquote-border-color);
|
|
|
|
|
border-inline-end: none;
|
|
|
|
|
background-color: var(--blockquote-bg);
|
|
|
|
|
color: var(--blockquote-color);
|
|
|
|
|
border-left-color: var(--blockquote-border);
|
|
|
|
|
border-inline-start-color: var(--blockquote-border);
|
|
|
|
|
border-radius: var(--app-border-radius);
|
|
|
|
|
}
|
2026-03-09 21:57:52 +01:00
|
|
|
blockquote:has(small) {
|
|
|
|
|
padding: 6px 8px;
|
|
|
|
|
}
|
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
|
|
|
blockquote p:last-child {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2026-02-04 23:31:53 +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
|
|
|
blockquote footer {
|
|
|
|
|
margin-top: calc(var(--app-typography-spacing-vertical) * 0.5);
|
|
|
|
|
color: var(--blockquote-footer-color);
|
|
|
|
|
}
|
2026-02-04 23:31:53 +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
|
|
|
blockquote[data-variant="success"] {
|
|
|
|
|
--blockquote-bg: var(--badge-success-bg);
|
|
|
|
|
--blockquote-color: var(--badge-success-color);
|
|
|
|
|
--blockquote-border: var(--badge-success-border);
|
|
|
|
|
--blockquote-footer-color: var(--badge-success-color);
|
|
|
|
|
}
|
2026-02-04 23:31:53 +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
|
|
|
blockquote[data-variant="error"],
|
|
|
|
|
blockquote[data-variant="danger"] {
|
|
|
|
|
--blockquote-bg: var(--badge-danger-bg);
|
|
|
|
|
--blockquote-color: var(--badge-danger-color);
|
|
|
|
|
--blockquote-border: var(--badge-danger-border);
|
|
|
|
|
--blockquote-footer-color: var(--badge-danger-color);
|
|
|
|
|
}
|
2026-02-04 23:31:53 +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
|
|
|
blockquote[data-variant="info"] {
|
|
|
|
|
--blockquote-bg: var(--badge-info-bg);
|
|
|
|
|
--blockquote-color: var(--badge-info-color);
|
|
|
|
|
--blockquote-border: var(--badge-info-border);
|
|
|
|
|
--blockquote-footer-color: var(--badge-info-color);
|
|
|
|
|
}
|
2026-02-04 23:31:53 +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
|
|
|
blockquote[data-variant="warn"],
|
|
|
|
|
blockquote[data-variant="warning"] {
|
|
|
|
|
--blockquote-bg: var(--badge-warn-bg);
|
|
|
|
|
--blockquote-color: var(--badge-warn-color);
|
|
|
|
|
--blockquote-border: var(--badge-warn-border);
|
|
|
|
|
--blockquote-footer-color: var(--badge-warn-color);
|
|
|
|
|
}
|
2026-02-04 23:31:53 +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
|
|
|
blockquote[data-variant="neutral"] {
|
|
|
|
|
--blockquote-bg: var(--badge-neutral-bg);
|
|
|
|
|
--blockquote-color: var(--badge-neutral-color);
|
|
|
|
|
--blockquote-border: var(--badge-neutral-border);
|
|
|
|
|
--blockquote-footer-color: var(--badge-neutral-color);
|
|
|
|
|
}
|
2026-02-04 23:31:53 +01:00
|
|
|
}
|