mirror of
https://github.com/tabler/tabler.git
synced 2025-12-22 09:54:24 +04:00
131 lines
2.0 KiB
SCSS
131 lines
2.0 KiB
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
@mixin step-size($border-width, $dot-size: 1rem) {
|
|
.step-item {
|
|
padding-top: calc(#{$dot-size} + 4px);
|
|
|
|
&::after {
|
|
top: calc(#{$dot-size / 2} + 2px);
|
|
height: $border-width;
|
|
}
|
|
|
|
&::before {
|
|
width: $dot-size;
|
|
height: $dot-size;
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin step-color($color) {
|
|
.step-item {
|
|
&::after,
|
|
&::before {
|
|
color: $white;
|
|
background: $color;
|
|
}
|
|
|
|
&.active::before {
|
|
color: inherit;
|
|
border-color: $color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.steps {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 2rem 0;
|
|
list-style: none;
|
|
@include step-size(2px, .5rem);
|
|
@include step-color($primary);
|
|
}
|
|
|
|
@each $color, $value in $colors {
|
|
.steps-#{$color} {
|
|
@include step-color($value);
|
|
}
|
|
}
|
|
|
|
.step-item {
|
|
position: relative;
|
|
flex: 1 1 0;
|
|
min-height: 1rem;
|
|
margin-top: 0;
|
|
color: inherit;
|
|
text-align: center;
|
|
cursor: default;
|
|
|
|
@at-root a#{&} {
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
&:not(:first-child)::after {
|
|
position: absolute;
|
|
left: -50%;
|
|
width: 100%;
|
|
content: "";
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
&::before {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 50%;
|
|
z-index: 1;
|
|
box-sizing: content-box;
|
|
display: block;
|
|
content: "";
|
|
border: 2px solid #fff;
|
|
border-radius: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
&.active {
|
|
font-weight: 600;
|
|
|
|
&::before {
|
|
background: #fff;
|
|
}
|
|
|
|
& ~ .step-item {
|
|
color: $text-muted-light;
|
|
|
|
&::after,
|
|
&::before {
|
|
background: $steps-color-inactive;
|
|
}
|
|
|
|
&::before {
|
|
color: $text-muted-light !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.steps-counter {
|
|
counter-reset: steps;
|
|
@include step-size(2px, 1.5rem);
|
|
|
|
.step-item {
|
|
counter-increment: steps;
|
|
|
|
&::before {
|
|
font-size: 1rem;
|
|
line-height: 1.5rem;
|
|
content: counter(steps);
|
|
}
|
|
|
|
&.active ~ .step-item {
|
|
&::before {
|
|
background: #fff;
|
|
}
|
|
}
|
|
}
|
|
}
|