- 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>
34 lines
704 B
CSS
34 lines
704 B
CSS
@layer components {
|
|
.app-list-tabs {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-bottom: var(--app-spacing);
|
|
border-bottom: 1px solid var(--list-tabs-border);
|
|
}
|
|
|
|
.app-list-tabs button,
|
|
.app-list-tabs a {
|
|
background: transparent;
|
|
border: 0;
|
|
padding: 5px 10px 5px 10px;
|
|
color: var(--list-tabs-muted);
|
|
cursor: pointer;
|
|
font-weight: 500;
|
|
border-bottom: 2px solid transparent;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.app-list-tabs button:hover,
|
|
.app-list-tabs button:focus-visible,
|
|
.app-list-tabs a:hover,
|
|
.app-list-tabs a:focus-visible {
|
|
color: var(--app-color);
|
|
}
|
|
|
|
.app-list-tabs button.is-active,
|
|
.app-list-tabs a.is-active {
|
|
color: var(--app-color);
|
|
border-color: var(--list-tabs-active);
|
|
}
|
|
}
|