52 lines
1.0 KiB
SCSS
52 lines
1.0 KiB
SCSS
.wizard {
|
|
background: $white;
|
|
background-color: $card-bg;
|
|
background-clip: border-box;
|
|
border: $card-border-width solid $card-border-color;
|
|
box-shadow: $box-shadow;
|
|
border-radius: $card-border-radius !important;
|
|
margin-bottom: 2rem;
|
|
|
|
@include wizard-variant($primary);
|
|
}
|
|
|
|
.wizard.sw-theme-default .sw-toolbar-bottom,
|
|
.wizard.sw-theme-arrows .sw-toolbar-bottom {
|
|
background: $white;
|
|
border-top-width: 1px;
|
|
border-top-style: solid;
|
|
border-top-color: $gray-300;
|
|
}
|
|
|
|
.wizard.sw-theme-default .step-content,
|
|
.wizard.sw-theme-arrows .step-content {
|
|
padding: 10px;
|
|
}
|
|
|
|
@each $color, $value in $theme-colors {
|
|
.wizard-#{$color}{
|
|
@include wizard-variant($value);
|
|
}
|
|
}
|
|
|
|
.wizard .step-content {
|
|
padding: $card-spacer-x !important;
|
|
}
|
|
|
|
.wizard.sw-theme-arrows > ul.step-anchor {
|
|
background: $white;
|
|
border-top: 1px solid $gray-300;
|
|
}
|
|
|
|
.sw-theme-arrows > ul.step-anchor > li {
|
|
a,
|
|
a:hover {
|
|
background: $white;
|
|
}
|
|
|
|
a:after,
|
|
a:hover:after {
|
|
border-left-color: $white;
|
|
}
|
|
}
|