- 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>
77 lines
1.2 KiB
CSS
77 lines
1.2 KiB
CSS
@layer vendor-overrides {
|
|
.codex-editor {
|
|
font-family: var(--app-font-family);
|
|
color: var(--app-color);
|
|
}
|
|
|
|
.ce-block__content {
|
|
max-width: 90%;
|
|
}
|
|
|
|
.ce-toolbar__content,
|
|
.ce-inline-toolbar {
|
|
border-radius: var(--app-border-radius);
|
|
}
|
|
|
|
.ce-inline-toolbar {
|
|
box-shadow: var(--app-box-shadow);
|
|
}
|
|
|
|
.ce-toolbar__content {
|
|
max-width: 90%;
|
|
}
|
|
|
|
input.cdx-search-field__input {
|
|
margin: 0;
|
|
padding: 5px;
|
|
height: auto;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.cdx-search-field__icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.ce-popover__items button {
|
|
background: transparent;
|
|
color: inherit;
|
|
padding: inherit;
|
|
border: 0;
|
|
align-items: center;
|
|
justify-content: center;
|
|
display: flex;
|
|
margin: 0;
|
|
}
|
|
|
|
input.ce-inline-tool-input.ce-inline-tool-input--showed {
|
|
margin: 0;
|
|
}
|
|
|
|
table.tc-table {
|
|
margin: 0;
|
|
}
|
|
|
|
.tc-cell {
|
|
border-left: 1px solid var(--color-border);
|
|
}
|
|
|
|
.ce-toolbar__actions {
|
|
right: calc(100% + 10px)!important;
|
|
background-color: white!important;
|
|
}
|
|
|
|
.ce-block--selected .ce-block__content {
|
|
background: var(--app-table-row-stripped-background-color);
|
|
}
|
|
|
|
.ce-inline-tool svg {
|
|
color: black;
|
|
}
|
|
|
|
.ce-popover--inline .ce-popover-item__icon svg {
|
|
color: black;
|
|
}
|
|
}
|