You've already forked DataMate
fix: 修复入库可能重复;筛选逻辑优化 (#226)
* 修改数据清洗筛选逻辑-筛选修改为多选 * 修改数据清洗筛选逻辑-筛选修改为多选 * antd 组件库样式定制修改 * fix: 修复入库可能重复 * fix: 算子市场筛选逻辑优化 * fix: 清洗任务创建筛选逻辑优化 * fix: 清洗任务创建筛选逻辑优化 --------- Co-authored-by: chase <byzhangxin11@126.com>
This commit is contained in:
7
frontend/src/theme/components/menus.ts
Normal file
7
frontend/src/theme/components/menus.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
const menuTheme = {
|
||||
itemColor: 'rgba(55, 65, 81, 1)',
|
||||
itemSelectedColor: 'rgba(29, 78, 216, 1)',
|
||||
itemSelectedBg: 'rgb(219, 234, 254)',
|
||||
itemBorderRadius: 6,
|
||||
};
|
||||
export default menuTheme;
|
||||
6
frontend/src/theme/components/table.ts
Normal file
6
frontend/src/theme/components/table.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
const tableTheme = {
|
||||
rowSelectedHoverBg: '#F7F9FB',
|
||||
headerColor: 'rgba(100, 116, 139, 1)',
|
||||
headerBg: '#fff',
|
||||
};
|
||||
export default tableTheme;
|
||||
10
frontend/src/theme/index.ts
Normal file
10
frontend/src/theme/index.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import menuTheme from "./components/menus";
|
||||
import tableTheme from "./components/table";
|
||||
|
||||
const theme = {
|
||||
components: {
|
||||
Menu: menuTheme,
|
||||
Table: tableTheme,
|
||||
},
|
||||
};
|
||||
export default theme;
|
||||
Reference in New Issue
Block a user