Projet

Général

Profil

0001-arles-updates-steps-36765.patch

Thomas Jund (congés, retour le 29/04), 20 novembre 2019 11:14

Télécharger (1,67 ko)

Voir les différences:

Subject: [PATCH] arles: updates steps (#36765)

 static/arles/_custom.scss | 30 +++++++++++++++++++++++++++---
 static/arles/_vars.scss   |  8 ++++++++
 2 files changed, 35 insertions(+), 3 deletions(-)
static/arles/_custom.scss
519 519
	}
520 520
}
521 521

  
522
@media screen and (max-width: $mobile-limit) {
523
	div#steps { white-space: normal; }
524
	div#steps li:not(.current) .label { display: none; }
522
// WCS Steps
523
.wcs-step {
524
	font-size: 1.3em;
525

  
526
	@include desktop-vertical-steps() {
527
		padding-left: 0;
528
		&--marker {
529
			font-size: 1.3em;
530
		}
531
		&--label {
532
			margin-left: 0;
533
			font-size: 0.7em;
534
		}
535
	}
536

  
537

  
538
	&.current  & {
539
		&--marker {
540
			font-weight: normal;
541
		}
542

  
543
		&--label {
544
			@media ($mq-min--wcs-steps-horizontal-layout) and (max-width: $mobile-limit) {
545
				color: $primary-color;
546
			}
547
		}
548
	}
525 549
}
526 550

  
527 551
li.is-redirection a::after {
static/arles/_vars.scss
26 26

  
27 27
$dashboard-selected-color: $primary-color;
28 28
$nav-after-image: false !default;
29

  
30
$wcs-steps-spacing: 0.5em;
31
$wcs-step-border-bottom: none;
32
$wcs-step-current-border-bottom: none;
33
$wcs-step-background: #bbb;
34
$wcs-step-color: #fff;
35
$wcs-step-current-color: #fff;
36
$wcs-step-current-background: $primary-color;
29
-