Skip to content

Commit 9a29aa2

Browse files
committed
Added ui instructions for memory browser.
1 parent 01edbe5 commit 9a29aa2

1 file changed

Lines changed: 50 additions & 6 deletions

File tree

templates/memory_browser.html

Lines changed: 50 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="zh-CN">
33
<head>
44
<meta charset="UTF-8">
5-
<title>记忆编辑</title>
5+
<title>记忆审阅</title>
66
<style>
77
body { background: #f7f8fa; margin:0; font-family: 'Segoe UI', Arial, sans-serif; }
88
.container { max-width: 900px; margin: 30px auto; background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); padding: 24px 24px 18px 24px; }
@@ -21,6 +21,40 @@
2121
.editor-actions { margin-top: 10px; text-align: right; }
2222
.btn { padding: 8px 18px; border-radius: 6px; border: none; background: #4f8cff; color: #fff; font-size: 1em; cursor: pointer; margin-right: 8px; transition: background 0.2s; }
2323
.btn:active { background: #2662c8; }
24+
25+
.tips-container {
26+
margin-bottom: 16px;
27+
padding: 12px;
28+
background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
29+
border-radius: 10px;
30+
border-left: 4px solid #4f8cff;
31+
box-shadow: 0 2px 8px rgba(79, 140, 255, 0.1);
32+
}
33+
34+
.tip-item {
35+
display: flex;
36+
align-items: flex-start;
37+
margin-bottom: 3px;
38+
padding: 3px 0;
39+
}
40+
41+
.tip-item:last-child {
42+
margin-bottom: 0;
43+
}
44+
45+
.tip-icon {
46+
font-size: 1.2em;
47+
margin-right: 10px;
48+
flex-shrink: 0;
49+
margin-top: 1px;
50+
}
51+
52+
.tip-text {
53+
color: #2c3e50;
54+
font-size: 0.95em;
55+
line-height: 1.3;
56+
flex: 1;
57+
}
2458
</style>
2559
<style>
2660
.cat-btn {
@@ -110,11 +144,21 @@
110144
</style>
111145
</head>
112146
<body>
113-
<div class="container">
114-
<div class="header">
115-
<span class="title">记忆编辑</span>
116-
<button class="close-btn" onclick="closeMemoryBrowser()">关闭</button>
117-
</div>
147+
<div class="container">
148+
<div class="tips-container">
149+
<div class="tip-item">
150+
<span class="tip-icon">💡</span>
151+
<span class="tip-text">刚刚结束的对话内容要稍等片刻才会载入,可以重新点击猫娘名称刷新。</span>
152+
</div>
153+
<div class="tip-item">
154+
<span class="tip-icon">💻</span>
155+
<span class="tip-text">App版退出时,请从系统托盘区右键退出记忆管理。</span>
156+
</div>
157+
</div>
158+
<div class="header">
159+
<span class="title">记忆审阅</span>
160+
<button class="close-btn" onclick="closeMemoryBrowser()">关闭</button>
161+
</div>
118162
<div class="main">
119163
<div class="file-list">
120164
<div class="file-list-title">猫娘记忆库</div>

0 commit comments

Comments
 (0)