fix:修复大模型对话管理的ant文本框和下拉选择框的样式
This commit is contained in:
@@ -16,6 +16,7 @@ export interface BackendRouteInfo {
|
||||
meta: string;
|
||||
permissions?: string[]; // ✅ 新增:该路由下用户拥有的权限列表
|
||||
children?: BackendRouteInfo[];
|
||||
|
||||
}
|
||||
|
||||
// 后端API响应接口
|
||||
|
||||
+17
-1
@@ -29,9 +29,10 @@
|
||||
@import './components/TooltipStyles.css';
|
||||
@import './components/document-version.css';
|
||||
@import './components/result-stats.css';
|
||||
|
||||
@import './components/dify-dataset-manager/index.css';
|
||||
/* @import './components/modal.css'; */
|
||||
|
||||
|
||||
/* 导入页面特定样式 */
|
||||
@import './pages/contract-template.css';
|
||||
|
||||
@@ -99,6 +100,21 @@
|
||||
@apply text-[#00684a] hover:text-[#005a3f] transition-colors duration-200;
|
||||
}
|
||||
|
||||
.ant-btn:focus{
|
||||
outline: none;
|
||||
outline-offset: 0;
|
||||
border-color: #00684a;
|
||||
box-shadow: 0 0 0 2px rgba(0, 104, 74, 0.1);
|
||||
}
|
||||
.ant-select:active,
|
||||
.ant-select:hover{
|
||||
outline: none;
|
||||
outline-offset: 0;
|
||||
border-color: #00684a;
|
||||
box-shadow: 0 0 0 2px rgba(0, 104, 74, 0.1);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* 组件相关样式 */
|
||||
|
||||
Reference in New Issue
Block a user