This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
ci4s
/
ci4sManagement-cloud
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
1
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
fix: 修复实验抽屉晃动的问题
pull/177/head
cp3hnu
11 months ago
parent
90204e3210
commit
50eeb44f0b
4 changed files
with
4 additions
and
10 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
react-ui/src/app.tsx
+0
-6
react-ui/src/pages/Experiment/Info/index.less
+2
-1
react-ui/src/pages/Experiment/components/ExperimentDrawer/index.less
+1
-2
react-ui/src/pages/Experiment/components/ExperimentDrawer/index.tsx
+ 1
- 1
react-ui/src/app.tsx
View File
@@ -250,7 +250,7 @@ export const antd: RuntimeAntdConfig = (memo) => {
};
memo.theme.cssVar = true;
//
memo.theme.hashed = false;
memo.theme.hashed = false;
memo.appConfig = {
message: {
+ 0
- 6
react-ui/src/pages/Experiment/Info/index.less
View File
@@ -30,10 +30,4 @@
background-image: url(@/assets/img/pipeline-canvas-bg.png);
background-size: 100% 100%;
}
:global {
.ant-drawer-mask {
background: transparent !important;
}
}
}
+ 2
- 1
react-ui/src/pages/Experiment/components/ExperimentDrawer/index.less
View File
@@ -1,4 +1,5 @@
.experiment-drawer {
line-height: var(--ant-line-height);
:global {
.ant-drawer-body {
overflow-y: hidden;
@@ -12,7 +13,7 @@
}
&__tabs {
height: calc(100% - 1
70
px);
height: calc(100% - 1
69
px);
:global {
.ant-tabs-nav {
padding-left: 24px;
+ 1
- 2
react-ui/src/pages/Experiment/components/ExperimentDrawer/index.tsx
View File
@@ -95,10 +95,9 @@ const ExperimentDrawer = ({
return (
<Drawer
rootStyle={{ marginTop: '
55
px' }}
rootStyle={{ marginTop: '
111
px' }}
title="任务执行详情"
placement="right"
getContainer={false}
closeIcon={<CloseOutlined className={styles['experiment-drawer__close']} />}
onClose={onClose}
open={open}
Write
Preview
Loading…
Cancel
Save