avray: update steps (#36765)

This commit is contained in:
Thomas JUND 2019-11-21 15:12:11 +01:00
parent 15e504c2de
commit b478594850
2 changed files with 26 additions and 10 deletions

View File

@ -510,20 +510,29 @@ div.large div#rub_service h3,
div#rub_service h3 {
border-bottom: 2px solid $title-color;
}
div#steps ol {
& li.current {
background: $title-color;
color: $title-background;
}
//steps
.wcs-step--marker {
font-weight: bold;
}
@if ($responsive-steps == horizontal) {
@media screen and (max-width: $mobile-limit) {
div#steps ol li.current span.marker {
background: $title-color;
color: $title-background;
@include desktop-vertical-steps() {
.wcs-step {
padding-left: 0;
&--label {
margin-left: 0;
}
&.current {
background-color: $primary-color;
}
&.current & {
&--label {
color: #fff;
font-weight: normal;
}
}
}
}
/* customization des liens dans les catégories de formulaires */
div#rub_service div.category ul,
div#services > ul > li > ul,

View File

@ -51,3 +51,10 @@ $button-hover-color: $link-color;
$table-headers-background: $title-color !default;
$table-headers-color: $title-background !default;
$wcs-steps-spacing: 0.7rem;
$wcs-step-background: #fff;
$wcs-step-current-border-bottom: none;
$wcs-step-marker-color: #bbb;
$wcs-step-current-marker-color: #fff;
$wcs-step-current-marker-background: $primary-color;