1.添加移动端用户的检测工具类,移动端用户只能访问对话页面。

2.评查点列表添加文档属性类型字段。
3.优化dify的对话侧边栏的显示效果。
4.评查点规则添加使用文档属性类型的输入框。添加多实体开关的操作开关。
This commit is contained in:
2025-12-30 18:35:48 +08:00
parent d2aba899cc
commit 66d2f7cef4
18 changed files with 552 additions and 56 deletions
@@ -495,4 +495,56 @@
.source-item {
max-width: 180px;
}
/* 移动端 Tooltip 弹出框适配 */
.source-tooltip-overlay {
max-width: calc(100vw - 32px) !important;
left: 16px !important;
right: 16px !important;
}
.source-tooltip-overlay .ant-tooltip-inner {
max-width: 100%;
word-wrap: break-word;
overflow-wrap: break-word;
}
.source-tooltip {
max-width: 100%;
}
.source-tooltip-header {
word-wrap: break-word;
overflow-wrap: break-word;
}
.source-tooltip-content {
max-height: 40vh;
overflow-y: auto;
word-wrap: break-word;
overflow-wrap: break-word;
}
}
/* 小屏手机进一步优化 */
@media (max-width: 480px) {
.source-tooltip-overlay {
max-width: calc(100vw - 24px) !important;
left: 12px !important;
right: 12px !important;
}
.source-tooltip-content {
max-height: 35vh;
font-size: 11px;
line-height: 1.5;
}
.source-tooltip-header {
font-size: 12px;
}
.source-tooltip-meta {
font-size: 10px;
}
}