mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 20:09:08 +08:00
c6bebeb50d
* fix: Form horizontal水平模式下 label 显示问题 * feat:Steps组件 * feat:Steps组件 * feat:Steps组件 * feat:Steps组件 * feat:Steps组件 文档 * feat:Steps组件 文档 Co-authored-by: yupeng12 <yupeng12@baidu.com>
101 lines
3.5 KiB
SCSS
101 lines
3.5 KiB
SCSS
.#{$ns}Steps {
|
|
display: flex;
|
|
list-style: none;
|
|
padding: 0;
|
|
.#{$ns}StepsItem {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
padding: 0 px2rem(20px);
|
|
height: auto;
|
|
line-height: px2rem(32px);
|
|
&-container {
|
|
&Icon {
|
|
vertical-align: top;
|
|
display: inline-block;
|
|
padding-right: px2rem(10px);
|
|
.#{$ns}StepsItem-icon {
|
|
display: inline-block;
|
|
width: px2rem(30px);
|
|
height: px2rem(30px);
|
|
line-height: px2rem(28px);
|
|
border-radius: 50%;
|
|
font-size: var(--Steps-icon-fontsize);
|
|
text-align: center;
|
|
}
|
|
}
|
|
&Wrapper {
|
|
display: inline-block;
|
|
position: relative;
|
|
.#{$ns}StepsItem-body {
|
|
.#{$ns}StepsItem-title {
|
|
font-size: var(--Steps-title-fontsize);
|
|
color: var(--Steps-title-color);
|
|
padding-right: px2rem(20px);
|
|
position: relative;
|
|
display: inline-block;
|
|
> span {
|
|
display: inline-block;
|
|
}
|
|
&:after {
|
|
content: '';
|
|
position: absolute;
|
|
right: 0;
|
|
top: px2rem(16px);
|
|
height: 1px;
|
|
left: 100%;
|
|
width: 9999px;
|
|
padding-right: 10px;
|
|
background-color: var(--Steps-line-bg);
|
|
}
|
|
}
|
|
.#{$ns}StepsItem-title.is-success {
|
|
&:after {
|
|
background-color: var(--Steps-line-success-bg);
|
|
}
|
|
}
|
|
.#{$ns}StepsItem-subTitle {
|
|
padding-left: px2rem(10px);
|
|
font-size: var(--Steps-sub-title-fontsize);
|
|
color: var(--Steps-sub-title-color);
|
|
}
|
|
.#{$ns}StepsItem-description {
|
|
max-width: px2rem(140px);
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&:last-child {
|
|
flex: none;
|
|
.#{$ns}StepsItem-title {
|
|
&:after {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.#{$ns}StepsItem.is-wait {
|
|
.#{$ns}StepsItem-icon {
|
|
background-color: var(--white);
|
|
color: var(--Steps-bg);
|
|
border: 1px solid var(--Steps-bg);
|
|
}
|
|
}
|
|
.#{$ns}StepsItem.is-error {
|
|
.#{$ns}StepsItem-icon {
|
|
background-color: var(--Steps-status-error);
|
|
color: var(--white);
|
|
border: 1px solid var(--Steps-status-error);
|
|
}
|
|
.#{$ns}StepsItem-title, .#{$ns}StepsItem-subTitle, .#{$ns}StepsItem-description {
|
|
color: var(--Steps-status-error);
|
|
}
|
|
}
|
|
.#{$ns}StepsItem.is-finish, .#{$ns}StepsItem.is-process {
|
|
.#{$ns}StepsItem-icon {
|
|
background-color: var(--Steps-status-success);
|
|
color: var(--white);
|
|
border: 1px solid var(--Steps-status-success);
|
|
}
|
|
}
|
|
} |