mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Fixed sidebar width (never concedes), figma session-row rail (16px twist + status slots, triangle arrows, mount fade), exact brand wordmark svg with tooltip'd rail controls, form controls inheriting the app font stack, and inlined the twist button reset since the tsdown CSS pipeline drops composes.
30 lines
900 B
CSS
30 lines
900 B
CSS
/* Shell-owned global base: full-height mount plus the theme token sheets.
|
|
* The three ui-theme sheets are the sole token source (--dsw-*); the shell
|
|
* links them here so tokens exist before any plugin CSS lands. */
|
|
@import '@deepseek-ai/dsh-client-ui-theme/styles/base.css';
|
|
@import '@deepseek-ai/dsh-client-ui-theme/styles/design-platform.css';
|
|
@import '@deepseek-ai/dsh-client-ui-theme/styles/gradient-shadow-text.css';
|
|
|
|
html,
|
|
body,
|
|
#root {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--dsw-font-family);
|
|
color: var(--dsw-alias-label-primary);
|
|
background: var(--dsw-alias-bg-base);
|
|
}
|
|
|
|
/* Form controls don't inherit the body font (UA sheets pin their families —
|
|
Chrome buttons fall back to Arial, textareas to monospace), so the app
|
|
stack is re-applied to them explicitly, as upstream's global reset does. */
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font-family: inherit;
|
|
}
|