liege: update steps (#37812)

This commit is contained in:
Thomas JUND 2019-11-20 17:49:31 +01:00
parent 6b34fc0224
commit 0f371728ef
2 changed files with 41 additions and 1 deletions

View File

@ -836,3 +836,37 @@ div.widget table input, div.widget table select {
form.quixote div.hidden, div.invisible{
display:none;
}
// Steps
.wcs-steps {
border-radius: 0 0 0 10px;
font-size: 1.2em;
@include desktop-vertical-steps() {
min-height: 400px;
font-size: 1.5em;
background: linear-gradient(to bottom, #F6F6F6, #F6F6F6 30%, white);
border-radius: 10px 10px 0 0;
}
}
.wcs-step {
&--marker {
font-weight: bold;
border: 1px solid;
}
&--label {
font-weight: normal;
}
@include desktop-vertical-steps() {
border-bottom: 1px solid #ccc !important;
margin-bottom: $wcs-steps-spacing;
padding-bottom: $wcs-steps-spacing;
&--marker {
border: none;
}
}
}

View File

@ -2,7 +2,7 @@
$primary-color: #BE0D67;
$width: 950px;
$mobile-limit: 800px;
$mobile-limit: 768px;
$font-size: 14px !default;
$font-family: "Open Sans", sans-serif !default;
$link-color: #58585A;
@ -29,6 +29,12 @@ $a_portal_agent_right: 6%;
$a_portal_agent_border: None;
/*end IMIO SHARE*/
// Steps config
$wcs-step-color: #5a5a5a;
$wcs-steps-background: linear-gradient(to right, #F6F6F6, white);
$wcs-steps-spacing: 1ex;
$wcs-step-border-bottom: none;
@import '../../publik-base-theme/static/includes/publik';
@import 'header.scss';