返回 DeepSeek-Reasonix
ToolRecoveryPanel.css
根目录 / desktop / frontend / src / components / ToolRecoveryPanel.css
1 .tool-recovery-panel {
2 position: absolute;
3 inset-inline: 24px;
4 bottom: 12px;
5 z-index: var(--z-inline-sticky);
6 max-height: min(60vh, 480px);
7 overflow: auto;
8 background: var(--bg-elev);
9 border: 1px solid currentColor;
10 border-radius: 8px;
11 padding: 12px 16px;
12 margin: 0;
13 }
14 .tool-recovery-panel > details { width: 100%; }
15 .tool-recovery-panel summary { cursor: pointer; }
16 .tool-recovery-panel pre {
17 max-height: 160px;
18 overflow: auto;
19 white-space: pre-wrap;
20 overflow-wrap: anywhere;
21 }
22
22 lines CSS