mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Menus: keep 12px viewport clearance with internal scroll, pin workspace create actions in a footer, and pre-render portal lists hidden so the first painted frame is already at its final position (no open jump). Tool rows: 14px icons, secondary titles, no hover fill, and a hover chevron preview on in-place expandable rows. Settings: 800x600 layer-2 panel over a blurred mask, hover states, and wrapping selector cubes; ModelSelect surface tokens now match the Menu primitive.
104 lines
2.1 KiB
CSS
104 lines
2.1 KiB
CSS
/* Full-viewport layer (figma Mask + Dialog 451:18655): mask + centered card. */
|
|
.root {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 1000;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 24px;
|
|
}
|
|
|
|
/* User/spec mask: rgba(0,0,0,0.24) + blur(2px) via --dsw-alias-bg-mask-1 /
|
|
--dsw-mask-blur (light); dark theme raises mask opacity. */
|
|
.mask {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: var(--dsw-alias-bg-mask-1);
|
|
backdrop-filter: var(--dsw-mask-blur);
|
|
}
|
|
|
|
/* Dialog card: r24, shadow-lv3, layer-2 fill, inverted border, pb 24. */
|
|
.dialog {
|
|
position: relative;
|
|
z-index: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
width: min(380px, 100%);
|
|
padding: 0 0 24px;
|
|
overflow: hidden;
|
|
border: 1px solid var(--dsw-alias-border-inverted);
|
|
border-radius: 24px;
|
|
background: var(--dsw-alias-bg-layer-2);
|
|
box-shadow: var(--dsw-shadow-lv3);
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Header row (figma Title row): pad l24/t22/r14/b12, SPACE_BETWEEN —
|
|
* title left, close button right. */
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
padding: 22px 14px 12px 24px;
|
|
}
|
|
|
|
.title {
|
|
margin: 0;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
font-weight: 500; /* figma wt510, rendered 500 */
|
|
color: var(--dsw-alias-label-primary);
|
|
}
|
|
|
|
.close {
|
|
flex: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 28px;
|
|
height: 28px;
|
|
border: none;
|
|
border-radius: 8px;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
color: var(--dsw-alias-label-secondary);
|
|
}
|
|
|
|
.close:hover {
|
|
background: var(--dsw-alias-interactive-bg-hover);
|
|
}
|
|
|
|
/* Description and body share the 332px content column (24px side pads). */
|
|
.description {
|
|
margin: 0;
|
|
padding: 0 24px;
|
|
font-size: 14px;
|
|
line-height: 22px;
|
|
font-weight: 400;
|
|
color: var(--dsw-alias-label-primary);
|
|
}
|
|
|
|
.body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
margin-top: 20px;
|
|
padding: 0 24px;
|
|
}
|
|
|
|
.footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
padding: 0 24px;
|
|
}
|