@dahawa/hawa-code 1.41.0 → 1.41.1

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.
@@ -1249,3 +1249,42 @@ html, body {
1249
1249
  color: #000;
1250
1250
  font-weight: 600;
1251
1251
  }
1252
+
1253
+ /* 详情展开/收起切换(Agent prompt / Memo content) */
1254
+ .detail-toggle {
1255
+ display: inline-block;
1256
+ color: var(--accent-blue);
1257
+ font-size: 11px;
1258
+ cursor: pointer;
1259
+ padding: 2px 6px;
1260
+ border-radius: 3px;
1261
+ border: 1px solid var(--border-color);
1262
+ transition: all 0.15s ease;
1263
+ }
1264
+
1265
+ .detail-toggle:hover {
1266
+ background: var(--bg-hover);
1267
+ color: var(--accent-blue);
1268
+ }
1269
+
1270
+ .agent-prompt-detail,
1271
+ .memo-content-detail {
1272
+ width: 100%;
1273
+ margin-top: 4px;
1274
+ background: rgba(0, 0, 0, 0.2);
1275
+ padding: 6px 8px;
1276
+ border-radius: 4px;
1277
+ font-size: 12px;
1278
+ line-height: 1.5;
1279
+ white-space: pre-wrap;
1280
+ word-break: break-word;
1281
+ color: var(--text-secondary);
1282
+ max-height: 400px;
1283
+ overflow-y: auto;
1284
+ }
1285
+
1286
+ .agent-prompt-detail code,
1287
+ .memo-content-detail code {
1288
+ background: none;
1289
+ padding: 0;
1290
+ }