86 lines
1.2 KiB
Plaintext
86 lines
1.2 KiB
Plaintext
![]() |
// 步骤表单相关样式 - 特定于任务管理的样式
|
||
|
.stepsContainer {
|
||
|
margin: 16px 0 24px;
|
||
|
padding: 24px 0;
|
||
|
background-color: #fff;
|
||
|
border-radius: 2px;
|
||
|
}
|
||
|
|
||
|
.stepsLayout {
|
||
|
margin: 16px 0;
|
||
|
}
|
||
|
|
||
|
.stepsLeft {
|
||
|
padding: 24px 0;
|
||
|
background-color: #fff;
|
||
|
border-radius: 2px;
|
||
|
}
|
||
|
|
||
|
.stepsRight {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.verticalSteps {
|
||
|
height: 100%;
|
||
|
|
||
|
:global {
|
||
|
.ant-steps-item-description {
|
||
|
max-width: 160px;
|
||
|
color: rgba(0, 0, 0, 0.45);
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.stepsContent {
|
||
|
margin-top: 0;
|
||
|
padding: 24px;
|
||
|
background-color: #fff;
|
||
|
border-radius: 2px;
|
||
|
min-height: 300px;
|
||
|
flex: 1;
|
||
|
}
|
||
|
.toolbar {
|
||
|
margin-bottom: 16px;
|
||
|
}
|
||
|
.stepsAction {
|
||
|
margin-top: 24px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
// 表单相关特定样式
|
||
|
.requiredLabel::before {
|
||
|
content: '*';
|
||
|
color: #ff4d4f;
|
||
|
margin-right: 4px;
|
||
|
}
|
||
|
|
||
|
.selectWithClear {
|
||
|
position: relative;
|
||
|
|
||
|
.clearIcon {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
right: 24px;
|
||
|
transform: translateY(-50%);
|
||
|
color: rgba(0, 0, 0, 0.25);
|
||
|
cursor: pointer;
|
||
|
z-index: 1;
|
||
|
|
||
|
&:hover {
|
||
|
color: rgba(0, 0, 0, 0.45);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.basicInfoStep {
|
||
|
.ant-form-item-label > label {
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// 供应商选择步骤样式
|
||
|
.supplierSelectStep {
|
||
|
}
|