Skip to content

Commit c930fd2

Browse files
committed
更新 .run/Outline-RAG.run.xml 容器镜像版本至 9.0.2,同步生产环境配置;新增 CSS 深色模式系统主题适配样式。
1 parent fb8ab17 commit c930fd2

2 files changed

Lines changed: 29 additions & 1 deletion

File tree

.run/Outline-RAG.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration default="false" name="Outline-RAG" type="docker-deploy" factoryName="dockerfile" server-name="Docker">
33
<deployment type="dockerfile">
44
<settings>
5-
<option name="imageTag" value="molyleaf/outline-rag:9.0.1" />
5+
<option name="imageTag" value="molyleaf/outline-rag:9.0.2" />
66
<option name="buildOnly" value="true" />
77
<option name="sourceFilePath" value="Dockerfile" />
88
</settings>

app/static/css/main.css

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,34 @@
4444
--safe-bottom: max(env(safe-area-inset-bottom), 32px);
4545
}
4646

47+
/* 深色模式适配 */
48+
@media (prefers-color-scheme: dark) {
49+
:root[data-theme="system"] {
50+
--bg: #131314;
51+
--panel: #1e1f20;
52+
--surface-hover: #2d2e30;
53+
54+
--text: #e3e3e3;
55+
--muted: #c4c7c5;
56+
--border: #444746;
57+
58+
--bubble-user: #2c333e;
59+
--bubble-assistant: #1e1f20;
60+
61+
--accent: #a8c7fa;
62+
--accent-hover: #d3e3fd;
63+
--accent-bg: rgba(168, 199, 250, 0.1);
64+
65+
--danger: #f2b8b5;
66+
--danger-bg: #601410;
67+
--danger-border: #8c1d18;
68+
69+
--shadow-1: 0 1px 3px rgba(0,0,0,0.3);
70+
--shadow-2: 0 8px 24px rgba(0,0,0,0.4);
71+
--shadow-glow: 0 0 20px rgba(168, 199, 250, 0.1);
72+
}
73+
}
74+
4775
/* 深色模式适配 */
4876
:root[data-theme="dark"] {
4977
--bg: #131314;

0 commit comments

Comments
 (0)