Projet

Général

Profil

0006-arles-updates-steps-36765.patch

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

Télécharger (1,59 ko)

Voir les différences:

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

 static/arles/_custom.scss | 28 +++++++++++++++++++++++++---
 static/arles/_vars.scss   |  7 +++++++
 2 files changed, 32 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
		&--marker {
528
			font-size: 1.3em;
529
		}
530
		&--label {
531
			margin-left: 0;
532
		}
533
	}
534

  
535

  
536
	&.current  & {
537
		&--marker {
538
			font-weight: normal;
539
		}
540

  
541
		&--label {
542
			@media (min-width: $very-small-limit) and (max-width: $mobile-limit) {
543
				color: $primary-color;
544
			}
545
		}
546
	}
525 547
}
526 548

  
527 549
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.7em;
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-background: $primary-color;
29
-