amis/scss/components/_wizard.scss
吴多益 33686a375e
SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190)
* 使用自定义 css 属性初步,支持大部分组件的展现

* button 大部分可以看了

* cxd 和 dark 大部分正常

* 修复一些细节样式错误;补充 css 变量的文档

* 修复几个脚本发现的错误

* 完善一下注释

* 修复一些样式不一致问题

* 修复可能存在的 css xss

* 恢复 font-variant 功能

* 修复绝大部分 @if 相关的问题

* 恢复之前的注释

* 修复小错误,并将所有 background-color 改成 background,这样就能设置渐变色

* 修复 button group 在 cxd 下不一致问题

* 缩小查看配置和复制配置的宽度,留出更多空间

* 修复一些潜在的错误

* 恢复 utilities 中 label 背景色的设置

* 修复错误的 css 变量

* 补充 IE11 Variables Polyfill
2020-12-21 10:08:40 +08:00

276 lines
6.2 KiB
SCSS

.#{$ns}Wizard {
@include clearfix();
position: relative;
&,
&-tabs {
padding: 0;
.#{$ns}Badge {
display: inline-block;
width: var(--Wizard-badge-size);
height: var(--Wizard-badge-size);
font-size: var(--Wizard-badge-fontSize);
line-height: var(--Wizard-badge-size);
color: var(--Wizard-badge-color);
text-align: center;
white-space: nowrap;
vertical-align: middle;
background: var(--Wizard-badge-bg);
border-radius: var(--Wizard-badge-borderRadius); // font-weight: 700;
text-shadow: 0 px2rem(1px) 0 rgba(0, 0, 0, 0.2);
margin-right: var(--Wizard-badge-marginRight);
border: var(--Wizard-badge-border);
box-sizing: content-box;
// &--primary {
// background: var(--primary);
// }
// &--secondary {
// background: var(--secondary);
// }
// &--success {
// background: var(--success);
// }
// &--info {
// background: var(--info);
// }
// &--warning {
// background: var(--warning);
// }
// &--danger {
// background: var(--danger);
// }
// &--light {
// background: var(--light);
// }
// &--dark {
// background: var(--dark);
// }
&.is-active {
color: var(--white);
background: var(--Wizard-badge-onActive-backgroundColor);
}
}
ul li.active {
color: var(--info);
}
.#{$ns}Panel-footer > .#{$ns}Form-group,
.#{$ns}Panel-footer > .btn {
margin-left: px2rem(5px);
}
> ul.nav {
padding: 0;
margin: 0;
border: var(--borderWidth) solid var(--borderColor);
li {
position: relative;
float: left;
padding: 0 px2rem(15px) 0 px2rem(25px);
margin: 0;
color: #999999;
cursor: pointer;
height: var(--Wizard-steps-height);
line-height: var(--Wizard-steps-height);
a {
border: 0 none !important;
background: transparent !important;
color: inherit;
display: inline;
padding: 0;
div {
display: inline;
}
}
&:first-child {
padding-left: px2rem(15px);
border-radius: px2rem(4px) 0 0 0;
}
&:before,
&:after {
content: '';
position: absolute;
right: px2rem(-10px);
border: px2rem(20px) solid transparent;
border-right: 0;
border-left: px2rem(10px) solid var(--borderColor);
border-left-color: rgba(0, 0, 0, 0.05);
z-index: 1;
bottom: 0;
}
&:after {
right: px2rem(-9px);
border-left-color: var(--Wizard-steps-bg);
z-index: 2;
}
&.is-active {
color: var(--Wizard-steps-li-onActive-color);
background: #fff;
}
&.is-active:after {
border-left-color: #fff;
}
}
// .Badge {
// margin-right: px2rem(4px);
// }
}
}
&-steps {
font-size: var(--fontSizeBase);
padding: var(--Wizard-steps-padding);
background: var(--Wizard-steps-bg);
border-bottom: var(--Wizard-steps-borderWidth) solid var(--borderColor);
text-align: var(--Wizard-steps-textAlign);
@include clearfix();
ul {
display: var(--Wizard-steps-ulDisplay);
padding: 0;
margin: 0;
list-style: none outside none;
li {
position: relative;
float: left;
padding: 0 px2rem(15px) 0 px2rem(25px);
margin: 0;
color: #999999;
cursor: default;
height: var(--Wizard-steps-height);
line-height: var(--Wizard-steps-height);
&:first-child {
padding-left: px2rem(15px);
border-radius: px2rem(4px) 0 0 0;
}
&:before,
&:after {
font-family: var(--Wizard-steps-liVender);
content: var(--Wizard-steps-liAfterContent);
position: absolute;
bottom: 0;
right: px2rem(-10px);
border: var(--Wizard-steps-liAfterBorder);
border-right: 0;
border-left: px2rem(10px) solid var(--borderColor);
border-left-color: rgba(0, 0, 0, 0.05);
z-index: 2;
}
&:after {
right: px2rem(-9px);
border-left-color: var(--Wizard-steps-bg);
z-index: 2;
}
&.is-active {
color: var(--Wizard-steps-li-onActive-color);
background: var(--Wizard-steps-li-onActive-bg);
}
&.is-active:after {
border-left-color: var(--Wizard-steps-li-onActive-arrow-bg);
}
&.is-complete,
&.is-complete:hover {
color: var(--Wizard-steps-li-onActive-color);
cursor: pointer;
background: var(--Wizard-steps-bg--isComplete);
}
&.is-complete:after {
border-left-color: #f1f5f9;
}
}
// .Badge {
// margin-right: px2rem(4px);
// }
}
}
&-stepContent {
padding: var(--Wizard-stepsContent-padding);
& .Step-pane {
display: none;
&.is-active {
display: inherit;
}
}
}
&--vertical {
> .#{$ns}Wizard-step {
display: flex;
flex-direction: row;
flex-wrap: wrap;
border-bottom: none;
> .#{$ns}Wizard-steps {
height: auto;
min-width: 40px;
margin-right: 30px;
margin-bottom: px2rem(30px); // padding: 0;
background: none;
border-bottom: none;
li {
background: var(--Wizard-steps-bg);
}
ul li {
height: px2rem(40px);
line-height: px2rem(40px);
position: relative;
float: none;
border-bottom: var(--borderWidth) solid var(--borderColor);
padding-left: px2rem(15px); // &:before,
// &:after {
// border: px2rem(20px) solid transparent;
// content: '';
// }
&.is-active {
background: #fff;
}
}
}
> .#{$ns}Wizard-stepContent {
flex-grow: 1;
width: 0;
}
> .#{$ns}Wizard-footer {
width: 100%;
}
}
}
}