2026-05-27 09:17:57 +08:00
|
|
|
.workbench {
|
2026-05-28 09:30:34 +08:00
|
|
|
--hero-padding-top: 26px;
|
2026-05-28 16:24:59 +08:00
|
|
|
--hero-padding-bottom: 26px;
|
2026-05-28 09:30:34 +08:00
|
|
|
--hero-title-size: 30px;
|
|
|
|
|
--hero-copy-gap: 6px;
|
2026-05-28 12:09:49 +08:00
|
|
|
--hero-title-bottom-gap: 18px;
|
2026-05-28 09:30:34 +08:00
|
|
|
--composer-min-height: 122px;
|
|
|
|
|
--composer-textarea-height: 54px;
|
|
|
|
|
--composer-padding-block: 12px;
|
|
|
|
|
--quick-prompts-gap-top: 10px;
|
|
|
|
|
--capability-row-height: 104px;
|
|
|
|
|
--workbench-ink: var(--ink, #1e293b);
|
|
|
|
|
--workbench-text: var(--text, #334155);
|
|
|
|
|
--workbench-muted: var(--muted, #64748b);
|
|
|
|
|
--workbench-line: var(--line, #e2e8f0);
|
|
|
|
|
--workbench-line-strong: var(--line-strong, #cbd5e1);
|
|
|
|
|
--workbench-line-soft: color-mix(in srgb, var(--line, #e2e8f0) 58%, #fff);
|
|
|
|
|
--workbench-surface: var(--surface, #fff);
|
|
|
|
|
--workbench-surface-soft: var(--surface-soft, #f9fbff);
|
|
|
|
|
--workbench-primary: var(--theme-primary, #3a7ca5);
|
|
|
|
|
--workbench-primary-active: var(--theme-primary-active, #255b7d);
|
|
|
|
|
--workbench-primary-soft: var(--theme-primary-soft, #eaf4fa);
|
|
|
|
|
--workbench-secondary: var(--theme-secondary, #4f6f9f);
|
|
|
|
|
--workbench-chart-blue: var(--chart-blue, #4f6f9f);
|
|
|
|
|
--workbench-chart-purple: var(--chart-purple, #6e7fa6);
|
|
|
|
|
--workbench-chart-amber: var(--chart-amber, #b58b4c);
|
|
|
|
|
|
|
|
|
|
width: 100%;
|
2026-06-09 08:32:00 +00:00
|
|
|
max-width: 1680px;
|
|
|
|
|
margin: 0 auto;
|
2026-05-28 09:30:34 +08:00
|
|
|
height: 100%;
|
2026-05-27 09:17:57 +08:00
|
|
|
min-width: 0;
|
|
|
|
|
display: grid;
|
2026-05-28 09:30:34 +08:00
|
|
|
grid-template-rows: auto var(--capability-row-height) minmax(0, 1fr);
|
|
|
|
|
gap: 10px;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
color: var(--workbench-ink);
|
2026-06-04 11:03:29 +08:00
|
|
|
|
|
|
|
|
/* 恢复极简纯净的页面底层 */
|
|
|
|
|
background: transparent;
|
|
|
|
|
background-color: var(--workbench-surface-soft);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.workbench :where(button, textarea) {
|
|
|
|
|
font: inherit;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.workbench,
|
|
|
|
|
.workbench * {
|
|
|
|
|
box-sizing: border-box;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.workbench :where(button) {
|
|
|
|
|
border: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
cursor: pointer;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.workbench :where(button:disabled) { cursor: not-allowed; opacity: 0.7; }
|
2026-05-27 09:17:57 +08:00
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.assistant-hero {
|
2026-06-06 17:19:07 +08:00
|
|
|
--assistant-bg-position: right center;
|
|
|
|
|
--assistant-decor-width: clamp(860px, 62vw, 1180px);
|
|
|
|
|
--assistant-decor-opacity: 0.92;
|
|
|
|
|
--assistant-readability-mask:
|
|
|
|
|
linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.34) 46%, rgba(255, 255, 255, 0) 100%);
|
|
|
|
|
--assistant-theme-tint:
|
|
|
|
|
linear-gradient(135deg, rgba(var(--theme-primary-rgb, 58, 124, 165), 0.11), rgba(var(--theme-primary-rgb, 58, 124, 165), 0.025) 54%, rgba(var(--theme-primary-rgb, 58, 124, 165), 0.075));
|
2026-05-27 09:17:57 +08:00
|
|
|
position: relative;
|
2026-05-28 09:30:34 +08:00
|
|
|
z-index: 2;
|
|
|
|
|
min-height: 0;
|
2026-06-06 17:19:07 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
overflow: visible;
|
2026-05-28 09:30:34 +08:00
|
|
|
padding: var(--hero-padding-top) 20px var(--hero-padding-bottom) 52px;
|
2026-06-06 17:19:07 +08:00
|
|
|
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.18);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background:
|
|
|
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.54)),
|
|
|
|
|
var(--assistant-theme-tint);
|
|
|
|
|
background-color: rgba(247, 252, 255, 0.72);
|
|
|
|
|
backdrop-filter: blur(14px) saturate(1.18);
|
|
|
|
|
-webkit-backdrop-filter: blur(14px) saturate(1.18);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 12px 28px rgba(15, 23, 42, 0.045),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.86),
|
|
|
|
|
inset 0 -1px 0 rgba(var(--theme-primary-rgb, 58, 124, 165), 0.07);
|
2026-05-28 09:30:34 +08:00
|
|
|
isolation: isolate;
|
2026-06-06 17:19:07 +08:00
|
|
|
animation: workbenchItemIn 560ms var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1)) both;
|
|
|
|
|
animation-delay: 0ms;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.assistant-hero::after {
|
2026-06-04 11:03:29 +08:00
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
2026-06-06 17:19:07 +08:00
|
|
|
right: 0;
|
2026-06-04 11:03:29 +08:00
|
|
|
bottom: 0;
|
2026-06-06 17:19:07 +08:00
|
|
|
width: 82%;
|
|
|
|
|
min-width: 760px;
|
|
|
|
|
background: url("../../images/workbench-hero-right-bg.png") var(--assistant-bg-position) / var(--assistant-decor-width) auto no-repeat;
|
|
|
|
|
opacity: var(--assistant-decor-opacity);
|
2026-06-04 11:03:29 +08:00
|
|
|
pointer-events: none;
|
|
|
|
|
z-index: 0;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.assistant-hero::before {
|
2026-05-27 09:17:57 +08:00
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
2026-05-28 09:30:34 +08:00
|
|
|
inset: 0;
|
|
|
|
|
border-radius: inherit;
|
|
|
|
|
background:
|
2026-06-06 17:19:07 +08:00
|
|
|
var(--assistant-readability-mask),
|
|
|
|
|
linear-gradient(120deg, rgba(255, 255, 255, 0.36), transparent 22%, transparent 72%, rgba(255, 255, 255, 0.18)),
|
|
|
|
|
linear-gradient(135deg, rgba(var(--theme-primary-rgb, 58, 124, 165), 0.05), transparent 58%);
|
2026-05-27 09:17:57 +08:00
|
|
|
pointer-events: none;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-copy {
|
|
|
|
|
position: relative;
|
2026-05-28 09:30:34 +08:00
|
|
|
z-index: 3;
|
2026-06-03 09:25:23 +08:00
|
|
|
width: min(980px, 94%);
|
2026-05-27 09:17:57 +08:00
|
|
|
display: grid;
|
2026-05-28 09:30:34 +08:00
|
|
|
gap: var(--hero-copy-gap);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.assistant-copy h1 {
|
2026-05-28 12:09:49 +08:00
|
|
|
margin: 0 0 var(--hero-title-bottom-gap);
|
2026-05-28 09:30:34 +08:00
|
|
|
color: var(--workbench-ink);
|
|
|
|
|
font-size: var(--hero-title-size);
|
|
|
|
|
line-height: 1.18;
|
|
|
|
|
font-weight: 850;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-06 17:19:07 +08:00
|
|
|
.assistant-copy h1 span:not(.typing-cursor) {
|
|
|
|
|
color: var(--workbench-primary-active);
|
|
|
|
|
display: inline-block;
|
|
|
|
|
animation: workbenchItemIn 400ms var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1)) both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.typing-cursor {
|
|
|
|
|
display: inline-block;
|
2026-05-28 09:30:34 +08:00
|
|
|
color: var(--workbench-primary-active);
|
2026-06-06 17:19:07 +08:00
|
|
|
font-weight: 400;
|
|
|
|
|
margin-left: 2px;
|
|
|
|
|
animation: cursorBlink 0.9s step-end infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes cursorBlink {
|
|
|
|
|
0%, 100% { opacity: 1; }
|
|
|
|
|
50% { opacity: 0; }
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-copy p {
|
2026-05-28 09:30:34 +08:00
|
|
|
max-width: 680px;
|
|
|
|
|
margin: 0 0 2px;
|
|
|
|
|
color: var(--workbench-muted);
|
|
|
|
|
font-size: 15px;
|
2026-05-27 09:17:57 +08:00
|
|
|
line-height: 1.6;
|
2026-05-28 09:30:34 +08:00
|
|
|
font-weight: 600;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-06-06 17:19:07 +08:00
|
|
|
.assistant-copy > * {
|
|
|
|
|
animation: workbenchItemIn 480ms var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1)) both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-copy > h1 { animation-delay: 80ms; }
|
|
|
|
|
.assistant-copy > p { animation-delay: 160ms; }
|
|
|
|
|
.assistant-copy > .assistant-composer { animation-delay: 240ms; }
|
|
|
|
|
.assistant-copy > .assistant-file-strip { animation-delay: 320ms; }
|
|
|
|
|
.assistant-copy > .quick-prompts { animation-delay: 320ms; }
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.assistant-file-input { display: none; }
|
2026-05-27 09:17:57 +08:00
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.assistant-composer {
|
2026-05-30 15:46:51 +08:00
|
|
|
position: relative;
|
2026-06-06 17:19:07 +08:00
|
|
|
z-index: 20;
|
2026-05-28 09:30:34 +08:00
|
|
|
display: grid;
|
|
|
|
|
gap: 6px;
|
2026-06-03 09:25:23 +08:00
|
|
|
max-width: 920px;
|
2026-05-28 09:30:34 +08:00
|
|
|
min-height: var(--composer-min-height);
|
|
|
|
|
padding: var(--composer-padding-block) 18px 10px;
|
2026-06-06 17:19:07 +08:00
|
|
|
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.24);
|
2026-05-28 12:09:49 +08:00
|
|
|
border-radius: 4px;
|
2026-06-06 17:19:07 +08:00
|
|
|
background:
|
|
|
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
|
|
|
|
|
linear-gradient(135deg, rgba(var(--theme-primary-rgb, 58, 124, 165), 0.045), rgba(255, 255, 255, 0.18));
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 10px 24px rgba(15, 23, 42, 0.045),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.9),
|
|
|
|
|
inset 0 -1px 0 rgba(var(--theme-primary-rgb, 58, 124, 165), 0.06);
|
|
|
|
|
backdrop-filter: blur(10px) saturate(1.14);
|
|
|
|
|
-webkit-backdrop-filter: blur(10px) saturate(1.14);
|
|
|
|
|
transition:
|
|
|
|
|
border-color 180ms var(--ease),
|
|
|
|
|
background 180ms var(--ease),
|
|
|
|
|
box-shadow 180ms var(--ease);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-composer::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
border-radius: inherit;
|
|
|
|
|
background:
|
|
|
|
|
linear-gradient(110deg, rgba(255, 255, 255, 0.32), transparent 32%),
|
|
|
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-composer > * {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-06-04 11:03:29 +08:00
|
|
|
.assistant-composer:focus-within {
|
2026-06-06 17:19:07 +08:00
|
|
|
border-color: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.58);
|
|
|
|
|
background:
|
|
|
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
|
|
|
|
|
linear-gradient(135deg, rgba(var(--theme-primary-rgb, 58, 124, 165), 0.06), rgba(255, 255, 255, 0.22));
|
2026-06-04 11:03:29 +08:00
|
|
|
box-shadow:
|
2026-06-06 17:19:07 +08:00
|
|
|
0 0 0 3px rgba(var(--theme-primary-rgb, 58, 124, 165), 0.11),
|
|
|
|
|
0 14px 30px rgba(15, 23, 42, 0.055),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.94),
|
|
|
|
|
inset 0 -1px 0 rgba(var(--theme-primary-rgb, 58, 124, 165), 0.08);
|
2026-06-04 11:03:29 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.assistant-composer textarea {
|
|
|
|
|
width: 100%;
|
2026-05-27 09:17:57 +08:00
|
|
|
min-width: 0;
|
2026-05-28 09:30:34 +08:00
|
|
|
height: var(--composer-textarea-height);
|
|
|
|
|
min-height: var(--composer-textarea-height);
|
|
|
|
|
max-height: var(--composer-textarea-height);
|
2026-05-27 09:17:57 +08:00
|
|
|
resize: none;
|
|
|
|
|
border: 0;
|
2026-05-28 09:30:34 +08:00
|
|
|
padding: 0;
|
2026-05-27 09:17:57 +08:00
|
|
|
background: transparent;
|
2026-05-28 09:30:34 +08:00
|
|
|
color: var(--workbench-ink);
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 1.55;
|
2026-05-27 09:17:57 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.assistant-composer textarea::placeholder {
|
|
|
|
|
color: color-mix(in srgb, var(--workbench-muted) 70%, #ffffff);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.assistant-composer textarea:focus { outline: none; }
|
2026-05-27 09:17:57 +08:00
|
|
|
|
2026-05-30 15:46:51 +08:00
|
|
|
.assistant-composer textarea[readonly] {
|
|
|
|
|
color: color-mix(in srgb, var(--workbench-ink) 72%, #ffffff);
|
|
|
|
|
cursor: progress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-intent-status {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: fit-content;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
min-height: 28px;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.22);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.08);
|
|
|
|
|
color: var(--workbench-primary-active);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 750;
|
|
|
|
|
line-height: 1.35;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-intent-status i {
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.composer-toolbar {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 12px;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.composer-icon-button,
|
|
|
|
|
.composer-send-button {
|
2026-05-27 09:17:57 +08:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-05-28 09:30:34 +08:00
|
|
|
height: 36px;
|
2026-05-28 12:09:49 +08:00
|
|
|
border-radius: 4px;
|
2026-05-27 09:17:57 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.composer-icon-button {
|
|
|
|
|
width: 36px;
|
|
|
|
|
border: 1px solid var(--workbench-line);
|
|
|
|
|
background: var(--workbench-surface);
|
|
|
|
|
color: var(--workbench-text);
|
|
|
|
|
font-size: 19px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.composer-count {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
color: color-mix(in srgb, var(--workbench-muted) 75%, #ffffff);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 650;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.composer-send-button {
|
|
|
|
|
width: 56px;
|
2026-05-28 12:09:49 +08:00
|
|
|
background: var(--workbench-primary-active);
|
2026-05-28 09:30:34 +08:00
|
|
|
color: #fff;
|
|
|
|
|
font-size: 18px;
|
2026-05-28 12:09:49 +08:00
|
|
|
box-shadow: 0 6px 14px rgba(var(--theme-primary-rgb, 58, 124, 165), 0.16);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-file-strip {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-file-note,
|
|
|
|
|
.assistant-file-chip {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
2026-05-28 09:30:34 +08:00
|
|
|
max-width: 220px;
|
|
|
|
|
min-height: 28px;
|
|
|
|
|
padding: 0 10px;
|
2026-05-28 12:09:49 +08:00
|
|
|
border-radius: 4px;
|
2026-05-27 09:17:57 +08:00
|
|
|
font-size: 12px;
|
2026-05-28 09:30:34 +08:00
|
|
|
font-weight: 750;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-file-note {
|
2026-05-28 09:30:34 +08:00
|
|
|
background: var(--workbench-primary-soft);
|
|
|
|
|
color: var(--workbench-primary-active);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-file-chip {
|
|
|
|
|
overflow: hidden;
|
2026-05-28 09:30:34 +08:00
|
|
|
border: 1px solid var(--workbench-line);
|
|
|
|
|
background: var(--workbench-surface);
|
|
|
|
|
color: var(--workbench-text);
|
2026-05-27 09:17:57 +08:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assistant-file-clear {
|
2026-05-28 09:30:34 +08:00
|
|
|
color: var(--workbench-muted);
|
2026-05-27 09:17:57 +08:00
|
|
|
font-size: 12px;
|
2026-05-28 09:30:34 +08:00
|
|
|
font-weight: 750;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.quick-prompts {
|
|
|
|
|
display: flex;
|
2026-05-27 09:17:57 +08:00
|
|
|
align-items: center;
|
2026-05-28 09:30:34 +08:00
|
|
|
gap: 10px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin-top: var(--quick-prompts-gap-top);
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
color: var(--workbench-text);
|
2026-05-27 09:17:57 +08:00
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.quick-prompts button {
|
|
|
|
|
min-height: 28px;
|
|
|
|
|
padding: 0 14px;
|
|
|
|
|
border: 1px solid var(--workbench-line);
|
2026-05-28 12:09:49 +08:00
|
|
|
border-radius: 4px;
|
2026-05-28 09:30:34 +08:00
|
|
|
background: rgba(255, 255, 255, 0.86);
|
|
|
|
|
color: var(--workbench-text);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 650;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.quick-prompts .quick-more {
|
2026-05-27 09:17:57 +08:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
2026-05-28 09:30:34 +08:00
|
|
|
gap: 4px;
|
|
|
|
|
border-color: transparent;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--workbench-primary-active);
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capability-grid {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 12:09:49 +08:00
|
|
|
.capability-grid--privileged {
|
|
|
|
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capability-grid--standard {
|
|
|
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.capability-card {
|
|
|
|
|
position: relative;
|
2026-06-04 11:03:29 +08:00
|
|
|
isolation: isolate;
|
2026-05-28 09:30:34 +08:00
|
|
|
display: grid;
|
2026-06-06 17:19:07 +08:00
|
|
|
grid-template-columns: 40px minmax(0, 1fr) 18px;
|
2026-05-28 09:30:34 +08:00
|
|
|
align-items: center;
|
|
|
|
|
gap: 14px;
|
|
|
|
|
min-height: 0;
|
2026-06-06 17:19:07 +08:00
|
|
|
padding: 16px 18px 16px 22px;
|
2026-06-04 11:03:29 +08:00
|
|
|
overflow: visible;
|
2026-06-06 17:19:07 +08:00
|
|
|
text-align: left;
|
2026-06-04 11:03:29 +08:00
|
|
|
border: 1px solid rgba(255, 255, 255, 0.9);
|
|
|
|
|
border-left: 3px solid color-mix(in srgb, var(--capability-color) 80%, rgba(255, 255, 255, 0.9));
|
2026-06-06 17:19:07 +08:00
|
|
|
min-width: 0;
|
|
|
|
|
background: rgba(255, 255, 255, 0.96);
|
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
|
-webkit-backdrop-filter: blur(8px);
|
|
|
|
|
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.15);
|
|
|
|
|
border-radius: 4px;
|
2026-06-04 11:03:29 +08:00
|
|
|
box-shadow:
|
2026-06-06 17:19:07 +08:00
|
|
|
0 8px 24px rgba(15, 23, 42, 0.03),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 1);
|
|
|
|
|
color: var(--workbench-ink);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
animation: workbenchItemIn 560ms var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1)) both;
|
|
|
|
|
animation-delay: var(--delay, 100ms);
|
2026-06-02 14:01:51 +08:00
|
|
|
transition:
|
|
|
|
|
border-color 180ms var(--ease),
|
|
|
|
|
box-shadow 180ms var(--ease),
|
|
|
|
|
color 180ms var(--ease),
|
|
|
|
|
transform 180ms var(--ease);
|
2026-05-28 09:30:34 +08:00
|
|
|
}
|
|
|
|
|
|
2026-06-06 17:19:07 +08:00
|
|
|
.capability-card:hover {
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
border-color: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.4);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 16px 32px rgba(15, 23, 42, 0.06),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 1);
|
2026-06-04 11:03:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capability-card > * {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.capability-icon {
|
2026-06-04 11:03:29 +08:00
|
|
|
--workbench-list-icon-size: 40px;
|
2026-06-06 17:19:07 +08:00
|
|
|
--workbench-list-icon-art-size: 24px;
|
2026-05-28 09:30:34 +08:00
|
|
|
width: 40px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
color: var(--capability-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capability-copy {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
display: grid;
|
2026-06-06 17:19:07 +08:00
|
|
|
justify-items: start;
|
2026-05-28 09:30:34 +08:00
|
|
|
gap: 4px;
|
2026-06-06 17:19:07 +08:00
|
|
|
text-align: left;
|
2026-05-28 09:30:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capability-copy strong {
|
|
|
|
|
color: var(--workbench-ink);
|
2026-05-27 09:17:57 +08:00
|
|
|
font-size: 14px;
|
2026-05-28 09:30:34 +08:00
|
|
|
font-weight: 850;
|
|
|
|
|
line-height: 1.25;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2026-05-27 09:17:57 +08:00
|
|
|
white-space: nowrap;
|
2026-06-06 17:19:07 +08:00
|
|
|
text-align: left;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.capability-copy small {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
color: var(--workbench-muted);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 1.35;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
2026-06-06 17:19:07 +08:00
|
|
|
text-align: left;
|
2026-05-28 09:30:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capability-arrow {
|
2026-06-06 17:19:07 +08:00
|
|
|
justify-self: end;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 18px;
|
|
|
|
|
min-width: 18px;
|
2026-05-28 09:30:34 +08:00
|
|
|
color: color-mix(in srgb, var(--workbench-muted) 68%, #ffffff);
|
|
|
|
|
font-size: 18px;
|
2026-06-06 17:19:07 +08:00
|
|
|
line-height: 1;
|
2026-05-28 09:30:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capability-card--green {
|
|
|
|
|
--capability-color: var(--workbench-primary);
|
|
|
|
|
--capability-soft: var(--workbench-primary-soft);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.capability-card--blue {
|
2026-05-28 12:09:49 +08:00
|
|
|
--capability-color: var(--workbench-primary);
|
|
|
|
|
--capability-soft: var(--workbench-primary-soft);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.capability-card--emerald {
|
2026-05-28 12:09:49 +08:00
|
|
|
--capability-color: var(--workbench-primary);
|
|
|
|
|
--capability-soft: var(--workbench-primary-soft);
|
2026-05-28 09:30:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capability-card--violet {
|
2026-05-28 12:09:49 +08:00
|
|
|
--capability-color: var(--workbench-primary);
|
|
|
|
|
--capability-soft: var(--workbench-primary-soft);
|
2026-05-28 09:30:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capability-card--cyan {
|
2026-05-28 12:09:49 +08:00
|
|
|
--capability-color: var(--workbench-primary);
|
|
|
|
|
--capability-soft: var(--workbench-primary-soft);
|
2026-05-28 09:30:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.capability-card--amber {
|
|
|
|
|
--capability-color: var(--workbench-chart-amber);
|
|
|
|
|
--capability-soft: color-mix(in srgb, var(--workbench-chart-amber) 12%, #ffffff);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.workbench-content-grid {
|
2026-05-27 09:17:57 +08:00
|
|
|
display: grid;
|
2026-06-04 11:03:29 +08:00
|
|
|
grid-template-columns: minmax(640px, 1.8fr) minmax(260px, 0.55fr);
|
2026-05-28 09:30:34 +08:00
|
|
|
gap: 14px;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.workbench-card {
|
2026-06-04 11:03:29 +08:00
|
|
|
position: relative;
|
|
|
|
|
isolation: isolate;
|
2026-05-28 09:30:34 +08:00
|
|
|
min-height: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding: 12px 14px;
|
2026-06-06 17:19:07 +08:00
|
|
|
background: rgba(255, 255, 255, 0.96);
|
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
|
-webkit-backdrop-filter: blur(8px);
|
|
|
|
|
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.15);
|
|
|
|
|
border-radius: 4px;
|
2026-06-04 11:03:29 +08:00
|
|
|
box-shadow:
|
2026-06-06 17:19:07 +08:00
|
|
|
0 12px 28px rgba(15, 23, 42, 0.04),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 1);
|
|
|
|
|
animation: workbenchItemIn 560ms var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1)) both;
|
|
|
|
|
animation-delay: var(--delay, 200ms);
|
2026-06-04 11:03:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.workbench-card > * {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-panel,
|
|
|
|
|
.side-panel {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-rows: auto minmax(0, 1fr);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-head {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 12px;
|
2026-05-28 09:30:34 +08:00
|
|
|
min-height: 24px;
|
|
|
|
|
margin-bottom: 5px;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.section-head h2 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
color: var(--workbench-ink);
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 1.25;
|
|
|
|
|
font-weight: 850;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-06-09 08:32:00 +00:00
|
|
|
.progress-section-head {
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-range-select {
|
|
|
|
|
width: 124px;
|
|
|
|
|
flex: 0 0 124px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-range-select .el-select__wrapper {
|
|
|
|
|
min-height: 32px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
box-shadow: 0 0 0 1px var(--workbench-line) inset;
|
|
|
|
|
background: rgba(255, 255, 255, 0.86);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-range-select .el-select__wrapper.is-focused,
|
|
|
|
|
.progress-range-select .el-select__wrapper:hover {
|
|
|
|
|
box-shadow: 0 0 0 1px rgba(var(--theme-primary-rgb, 58, 124, 165), 0.38) inset;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-27 09:17:57 +08:00
|
|
|
.title-with-badge {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.soft-badge {
|
|
|
|
|
min-width: 24px;
|
|
|
|
|
height: 24px;
|
2026-05-27 09:17:57 +08:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 0 7px;
|
2026-05-28 12:09:49 +08:00
|
|
|
border-radius: 4px;
|
2026-05-28 09:30:34 +08:00
|
|
|
background: var(--workbench-primary-soft);
|
|
|
|
|
color: var(--workbench-primary-active);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 850;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-06-06 17:19:07 +08:00
|
|
|
.insight-metric-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
padding: 6px 14px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background: color-mix(in srgb, var(--insight-color) 4%, transparent);
|
|
|
|
|
transition: transform 180ms var(--ease), background-color 180ms var(--ease);
|
|
|
|
|
animation: workbenchItemIn 480ms var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1)) both;
|
|
|
|
|
animation-delay: calc(400ms + var(--item-index, 0) * 80ms);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-27 09:17:57 +08:00
|
|
|
.link-action {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 4px;
|
2026-05-28 09:30:34 +08:00
|
|
|
color: var(--workbench-muted);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.muted-link {
|
|
|
|
|
color: var(--workbench-muted);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-list {
|
2026-05-27 09:17:57 +08:00
|
|
|
display: grid;
|
2026-05-28 09:30:34 +08:00
|
|
|
min-height: 0;
|
|
|
|
|
height: 100%;
|
2026-06-09 08:32:00 +00:00
|
|
|
align-content: start;
|
|
|
|
|
grid-auto-rows: minmax(56px, auto);
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding-right: 4px;
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
scrollbar-color: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.28) transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-list::-webkit-scrollbar {
|
|
|
|
|
width: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-list::-webkit-scrollbar-thumb {
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.24);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-empty-state {
|
|
|
|
|
min-height: 220px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
align-content: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 28px 18px;
|
|
|
|
|
border: 1px dashed rgba(var(--theme-primary-rgb, 58, 124, 165), 0.22);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background:
|
|
|
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.42)),
|
|
|
|
|
rgba(var(--theme-primary-rgb, 58, 124, 165), 0.025);
|
|
|
|
|
color: var(--workbench-muted);
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-empty-icon {
|
|
|
|
|
width: 42px;
|
|
|
|
|
height: 42px;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.18);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background: var(--workbench-primary-soft);
|
|
|
|
|
color: var(--workbench-primary-active);
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-empty-state strong {
|
|
|
|
|
color: var(--workbench-ink);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 850;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-empty-state p {
|
|
|
|
|
max-width: 260px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
color: var(--workbench-muted);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 1.55;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-row:first-child {
|
2026-05-28 09:30:34 +08:00
|
|
|
padding-top: 2px;
|
2026-05-27 09:17:57 +08:00
|
|
|
border-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-06 17:19:07 +08:00
|
|
|
.progress-row {
|
|
|
|
|
animation: workbenchItemIn 480ms var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1)) both;
|
|
|
|
|
animation-delay: calc(300ms + var(--item-index, 0) * 80ms);
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-09 08:32:00 +00:00
|
|
|
.progress-identity {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 17:40:52 +08:00
|
|
|
.progress-result {
|
2026-06-09 08:32:00 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
padding-right: 12px;
|
2026-06-03 17:40:52 +08:00
|
|
|
}
|
|
|
|
|
|
2026-06-09 08:32:00 +00:00
|
|
|
.progress-identity strong {
|
2026-06-03 17:40:52 +08:00
|
|
|
margin-bottom: 2px;
|
2026-06-09 08:32:00 +00:00
|
|
|
}
|
2026-06-03 17:40:52 +08:00
|
|
|
|
2026-06-09 08:32:00 +00:00
|
|
|
.progress-identity strong,
|
|
|
|
|
.progress-result strong {
|
2026-05-28 09:30:34 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
color: var(--workbench-ink);
|
|
|
|
|
font-size: 13px;
|
2026-06-03 17:40:52 +08:00
|
|
|
font-weight: bold;
|
2026-05-28 09:30:34 +08:00
|
|
|
line-height: 1.25;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-identity small {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
color: var(--workbench-muted);
|
|
|
|
|
font-size: 11.5px;
|
|
|
|
|
line-height: 1.25;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-06-03 15:14:44 +08:00
|
|
|
.progress-type {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
display: grid;
|
2026-06-03 15:21:38 +08:00
|
|
|
justify-self: stretch;
|
|
|
|
|
justify-items: center;
|
2026-06-03 15:14:44 +08:00
|
|
|
gap: 3px;
|
2026-06-03 15:21:38 +08:00
|
|
|
text-align: center;
|
2026-06-03 15:14:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-type small {
|
|
|
|
|
color: var(--workbench-muted);
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
font-weight: 750;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-type strong {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
2026-06-03 15:21:38 +08:00
|
|
|
justify-content: center;
|
2026-06-03 15:14:44 +08:00
|
|
|
min-height: 22px;
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.18);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.08);
|
|
|
|
|
color: var(--workbench-primary-active);
|
|
|
|
|
font-size: 11.5px;
|
|
|
|
|
font-weight: 850;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-status {
|
2026-05-27 09:17:57 +08:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
2026-05-28 09:30:34 +08:00
|
|
|
justify-content: center;
|
|
|
|
|
min-height: 20px;
|
|
|
|
|
padding: 0 7px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
font-size: 11.5px;
|
|
|
|
|
font-weight: 850;
|
2026-05-27 09:17:57 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-status--warning {
|
2026-06-03 17:40:52 +08:00
|
|
|
background: var(--warning-soft, #fff7ed);
|
|
|
|
|
color: var(--warning, #ea580c);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-status--success {
|
2026-06-03 17:40:52 +08:00
|
|
|
background: var(--workbench-primary-soft, #eaf4fa);
|
|
|
|
|
color: var(--workbench-primary-active, #255b7d);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-status--muted {
|
2026-06-03 17:40:52 +08:00
|
|
|
background: var(--info-soft, #f1f5f9);
|
|
|
|
|
color: var(--workbench-muted, #64748b);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-status--danger {
|
|
|
|
|
background: var(--danger-soft, #fef2f2);
|
|
|
|
|
color: var(--danger, #dc2626);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-row {
|
2026-06-03 12:38:17 +08:00
|
|
|
position: relative;
|
2026-05-28 09:30:34 +08:00
|
|
|
display: grid;
|
2026-06-03 17:40:52 +08:00
|
|
|
grid-template-columns: minmax(118px, 0.58fr) minmax(132px, 0.74fr) minmax(84px, 0.42fr) minmax(260px, 1.28fr) minmax(92px, auto);
|
2026-05-28 09:30:34 +08:00
|
|
|
align-items: center;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 1px 0;
|
|
|
|
|
border-top: 1px solid var(--workbench-line-soft);
|
|
|
|
|
text-align: left;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-06-03 17:40:52 +08:00
|
|
|
.progress-time-wrapper {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 14px;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expense-type-icon {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-06-06 17:19:07 +08:00
|
|
|
width: 42px;
|
|
|
|
|
height: 42px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
font-size: 22px;
|
2026-06-03 17:40:52 +08:00
|
|
|
flex-shrink: 0;
|
2026-06-06 17:19:07 +08:00
|
|
|
position: relative;
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 4px 10px rgba(0, 0, 0, 0.04),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.9),
|
|
|
|
|
inset 0 -1px 0 rgba(0, 0, 0, 0.03);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expense-type-icon::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
|
|
|
|
|
border-radius: inherit;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expense-type-icon i {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.12));
|
2026-06-03 17:40:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expense-type-icon--blue {
|
2026-06-06 17:19:07 +08:00
|
|
|
background: linear-gradient(135deg, color-mix(in srgb, var(--workbench-primary, #3a7ca5) 12%, #ffffff) 0%, color-mix(in srgb, var(--workbench-primary, #3a7ca5) 3%, #ffffff) 100%);
|
|
|
|
|
border: 1px solid color-mix(in srgb, var(--workbench-primary, #3a7ca5) 20%, #ffffff);
|
2026-06-03 17:40:52 +08:00
|
|
|
color: var(--workbench-primary, #3a7ca5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expense-type-icon--amber {
|
2026-06-06 17:19:07 +08:00
|
|
|
background: linear-gradient(135deg, color-mix(in srgb, var(--workbench-chart-amber, #b58b4c) 12%, #ffffff) 0%, color-mix(in srgb, var(--workbench-chart-amber, #b58b4c) 3%, #ffffff) 100%);
|
|
|
|
|
border: 1px solid color-mix(in srgb, var(--workbench-chart-amber, #b58b4c) 20%, #ffffff);
|
2026-06-03 17:40:52 +08:00
|
|
|
color: var(--workbench-chart-amber, #b58b4c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expense-type-icon--emerald {
|
2026-06-06 17:19:07 +08:00
|
|
|
background: linear-gradient(135deg, color-mix(in srgb, #0f8f68 12%, #ffffff) 0%, color-mix(in srgb, #0f8f68 3%, #ffffff) 100%);
|
|
|
|
|
border: 1px solid color-mix(in srgb, #0f8f68 20%, #ffffff);
|
|
|
|
|
color: #0f8f68;
|
2026-06-03 17:40:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expense-type-icon--violet {
|
2026-06-06 17:19:07 +08:00
|
|
|
background: linear-gradient(135deg, color-mix(in srgb, #6d5bd0 12%, #ffffff) 0%, color-mix(in srgb, #6d5bd0 3%, #ffffff) 100%);
|
|
|
|
|
border: 1px solid color-mix(in srgb, #6d5bd0 20%, #ffffff);
|
|
|
|
|
color: #6d5bd0;
|
2026-06-03 17:40:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expense-type-icon--cyan {
|
2026-06-06 17:19:07 +08:00
|
|
|
background: linear-gradient(135deg, color-mix(in srgb, #0788a2 12%, #ffffff) 0%, color-mix(in srgb, #0788a2 3%, #ffffff) 100%);
|
|
|
|
|
border: 1px solid color-mix(in srgb, #0788a2 20%, #ffffff);
|
|
|
|
|
color: #0788a2;
|
2026-06-03 17:40:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expense-type-icon--muted {
|
2026-06-06 17:19:07 +08:00
|
|
|
background: linear-gradient(135deg, var(--info-soft, #f1f5f9) 0%, #ffffff 100%);
|
|
|
|
|
border: 1px solid var(--workbench-line);
|
2026-06-03 17:40:52 +08:00
|
|
|
color: var(--workbench-muted, #64748b);
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 12:28:21 +08:00
|
|
|
.progress-time,
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-identity,
|
2026-06-03 15:14:44 +08:00
|
|
|
.progress-type,
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-result {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 2px;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-06-03 12:28:21 +08:00
|
|
|
.progress-time {
|
|
|
|
|
color: var(--workbench-muted);
|
2026-06-03 17:40:52 +08:00
|
|
|
justify-items: center;
|
2026-06-03 12:28:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-time time {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
color: var(--workbench-ink);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 850;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-time small {
|
|
|
|
|
color: var(--workbench-muted);
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
font-weight: 750;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 17:40:52 +08:00
|
|
|
.progress-time .time-capsule {
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
padding: 2px 6px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background: var(--danger-soft, #fef2f2);
|
|
|
|
|
color: var(--danger, #dc2626);
|
|
|
|
|
font-weight: 850;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-result {
|
|
|
|
|
justify-items: end;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-steps {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
|
|
|
align-items: start;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-step {
|
|
|
|
|
position: relative;
|
2026-05-27 09:17:57 +08:00
|
|
|
display: grid;
|
2026-05-28 09:30:34 +08:00
|
|
|
justify-items: center;
|
|
|
|
|
gap: 1px;
|
|
|
|
|
color: color-mix(in srgb, var(--workbench-muted) 64%, #ffffff);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-step::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 8px;
|
|
|
|
|
left: calc(-50% + 12px);
|
|
|
|
|
right: calc(50% + 12px);
|
|
|
|
|
height: 2px;
|
|
|
|
|
background: var(--workbench-line);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-step:first-child::before { display: none; }
|
|
|
|
|
|
|
|
|
|
.progress-step.is-done::before,
|
|
|
|
|
.progress-step.is-current::before {
|
|
|
|
|
background: var(--workbench-primary);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-step i {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
border: 2px solid var(--workbench-line);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background: var(--workbench-surface);
|
|
|
|
|
color: var(--workbench-line-strong, #cbd5e1);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 1;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-step.is-done i {
|
|
|
|
|
border-color: var(--workbench-primary);
|
|
|
|
|
background: var(--workbench-primary-soft);
|
|
|
|
|
color: var(--workbench-primary-active);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-step.is-current i {
|
|
|
|
|
border-color: var(--workbench-primary-active);
|
|
|
|
|
background: var(--theme-primary-light-9);
|
|
|
|
|
color: var(--workbench-primary-active);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-step small {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
font-weight: 750;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
white-space: nowrap;
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.progress-step.is-done,
|
|
|
|
|
.progress-step.is-current {
|
|
|
|
|
color: var(--workbench-ink);
|
|
|
|
|
}
|
2026-05-27 09:17:57 +08:00
|
|
|
|
2026-05-28 09:30:34 +08:00
|
|
|
.capability-card:hover,
|
|
|
|
|
.progress-row:hover,
|
|
|
|
|
.quick-prompts button:hover,
|
2026-05-30 15:46:51 +08:00
|
|
|
.composer-icon-button:hover {
|
2026-05-28 09:30:34 +08:00
|
|
|
border-color: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.24);
|
|
|
|
|
color: var(--workbench-primary-active);
|
2026-05-27 09:17:57 +08:00
|
|
|
}
|
2026-06-06 17:19:07 +08:00
|
|
|
|
|
|
|
|
@keyframes workbenchItemIn {
|
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(16px);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
|
.assistant-hero,
|
|
|
|
|
.capability-card,
|
|
|
|
|
.workbench-card {
|
|
|
|
|
animation: none !important;
|
|
|
|
|
}
|
|
|
|
|
}
|