@dahawa/hawa-code 2.3.5 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +746 -642
- package/hands.js +648 -544
- package/package.json +1 -1
- package/webServer/app.js +37 -35
- package/webServer/style.css +13 -1
package/webServer/style.css
CHANGED
|
@@ -502,11 +502,14 @@ html, body {
|
|
|
502
502
|
}
|
|
503
503
|
|
|
504
504
|
.message-tool-result {
|
|
505
|
-
padding
|
|
505
|
+
padding: 6px 8px 6px 24px;
|
|
506
506
|
border-left: 2px solid var(--accent-green);
|
|
507
507
|
margin-left: 4px;
|
|
508
508
|
color: var(--text-secondary);
|
|
509
509
|
font-size: 12px;
|
|
510
|
+
background: rgba(0, 0, 0, 0.2);
|
|
511
|
+
border-radius: 4px;
|
|
512
|
+
margin-top: 4px;
|
|
510
513
|
}
|
|
511
514
|
|
|
512
515
|
.message-tool-result .result-content {
|
|
@@ -880,6 +883,15 @@ html, body {
|
|
|
880
883
|
content: ' ';
|
|
881
884
|
}
|
|
882
885
|
|
|
886
|
+
/* LS 工具结果树形展示 */
|
|
887
|
+
.tool-result-ls .ls-tree {
|
|
888
|
+
line-height: 1.6;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.tool-result-ls .ls-tree code {
|
|
892
|
+
color: var(--text-secondary);
|
|
893
|
+
}
|
|
894
|
+
|
|
883
895
|
/* 展开/收起 */
|
|
884
896
|
.expand-toggle {
|
|
885
897
|
color: var(--text-dimmed);
|