mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-13 04:03:30 +00:00
Apply global visual polish across the web client: corner-shape: superellipse(1.5) with corner-shape: round pairing for full circles, elevation tokens that draw 0.5px stroke outlines inside box-shadow for floating surfaces, 0.5px hairline borders and divider lines for neutral-token strokes, and tuned stroke contrast plus larger radii for menus, settings panels, and cards. Stylesheet-scan specs in ui-theme reject unpaired circles, border+shadow mixes, and 1px neutral hairlines repo-wide. Closes #3287
33 lines
632 B
CSS
33 lines
632 B
CSS
.root {
|
|
margin: 4px 0;
|
|
}
|
|
|
|
.toggle {
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
color: var(--dsw-alias-label-secondary);
|
|
padding: 2px 6px;
|
|
border: none;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.toggle:hover {
|
|
background: var(--dsw-alias-interactive-bg-hover);
|
|
}
|
|
|
|
.body {
|
|
margin: 4px 0 0;
|
|
padding: 8px;
|
|
max-height: 200px;
|
|
overflow: auto;
|
|
background: var(--dsw-alias-markdown-code-block);
|
|
border: 0.5px solid var(--dsw-alias-border-l1);
|
|
border-radius: 6px;
|
|
font-family: var(--ds-font-family-code);
|
|
font-size: 11px;
|
|
line-height: 16px;
|
|
color: var(--dsw-alias-label-primary);
|
|
}
|