Projet

Général

Profil

0003-malakoff-update-steps-36765.patch

Thomas Jund (congés, retour le 29/04), 21 novembre 2019 16:13

Télécharger (1,42 ko)

Voir les différences:

Subject: [PATCH 3/4] malakoff: update steps (#36765)

 static/malakoff/_custom.scss | 20 ++++++++++++++++++++
 static/malakoff/_vars.scss   |  6 ++++++
 2 files changed, 26 insertions(+)
static/malakoff/_custom.scss
475 475
}
476 476
/* fin ajustement petits écrans */
477 477

  
478
//steps
479
.wcs-step--marker {
480
	font-size: 1.2em;
481
}
482
@include desktop-vertical-steps() {
483
	.wcs-step {
484
		padding-left: 0;
485
		&--label {
486
			margin-left: 0;
487
		}
488
		&.current {
489
			background-color: $primary-color;
490
		}
491
		&.current & {
492
			&--label {
493
				color: #fff;
494
			}
495
		}
496
	}
497
}
static/malakoff/_vars.scss
36 36
$button-hover-background: white;
37 37
$button-hover-color: $link-color;
38 38

  
39
$wcs-steps-spacing: 0.7rem; 
40
$wcs-step-background: #fff;
41
$wcs-step-current-border-bottom: none;
42
$wcs-step-current-marker-color: #fff;
43
$wcs-step-current-marker-background: $primary-color;
44
$wcs-step-marker-size: 1.8em;
39
-