forked from retoor/devplacepy
This commit introduces a comprehensive set of new features including API key authentication with CLI management commands (get, reset, backfill), a Devii agentic assistant with WebSocket terminal and session bootstrap, an OpenAI-compatible LLM gateway service, and an admin service management panel. It also adds Playwright browser automation for bot support, configures internal gateway URLs, refactors content editing/deletion to support JSON API responses, and updates documentation across AGENTS.md, README.md, and the developer docs site.
16 lines
382 B
CSS
16 lines
382 B
CSS
/* retoor <retoor@molodetz.nl> */
|
|
|
|
devii-avatar {
|
|
/* Devii floats ABOVE the terminal window (which sits at --devii-z = 2147483000)
|
|
so it is never hidden behind a maximized or fullscreen terminal. */
|
|
--devii-avatar-z: 2147483646;
|
|
display: block;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.md-clippy-agent,
|
|
.md-clippy-balloon {
|
|
z-index: var(--devii-avatar-z, 2147483646) !important;
|
|
}
|