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
|
|
|
@charset "UTF-8";
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Layer order (lowest -> highest priority):
|
|
|
|
|
* - tokens: design tokens and theme variables
|
|
|
|
|
* - vendor: third-party styles
|
|
|
|
|
* - layout: shell, header, sidebar and app structure
|
|
|
|
|
* - vendor-overrides: project overrides for third-party CSS
|
|
|
|
|
* - components: reusable UI building blocks
|
|
|
|
|
* - pages: page-specific styles
|
|
|
|
|
* - utilities: last-resort helpers/overrides
|
|
|
|
|
*/
|
|
|
|
|
@layer tokens, vendor, layout, vendor-overrides, components, pages, utilities;
|
|
|
|
|
|
feat: extract typography tokens into dedicated file with semantic aliases and a11y fallbacks
Create typography.tokens.css as single source of truth for the type system:
- Extract all primitive tokens from variables.base.css (--text-*, --leading-*, --font-*, --tracking-*)
- Add semantic aliases (--text-body, --text-label, --text-caption, --text-title, --text-page-title)
- Add --text-md (15px) escape hatch and --tracking-wider (0.05em) token
- Add prefers-reduced-motion fallbacks locking fluid headings to fixed midpoints
- Document scale ratio (1.25x major third, 14px base) with reference table
- Migrate h1/h2 in app-shell.css to semantic aliases
- Migrate 4 raw letter-spacing values to --tracking-* tokens
- Extend TypographyTokenContractTest with 3 new tests (letter-spacing, aliases, reduced-motion)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-22 16:25:51 +01:00
|
|
|
/* Load typography tokens first — consumed by variables.base.css and all downstream layers. */
|
|
|
|
|
@import url("base/typography.tokens.css") layer(tokens);
|
|
|
|
|
|
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
|
|
|
/* Load third-party styles into the vendor layer so app layers can override them predictably. */
|
|
|
|
|
@import url("../vendor/bootstrap-icons/bootstrap-icons.css") layer(vendor);
|
|
|
|
|
@import url("../vendor/gridjs/mermaid.min.css") layer(vendor);
|
|
|
|
|
@import url("../vendor/multi-select/MultiSelect.css") layer(vendor);
|