Projet

Général

Profil

0001-avray-update-steps-36765.patch

Thomas Jund, 21 novembre 2019 16:13

Télécharger (1,96 ko)

Voir les différences:

Subject: [PATCH 1/4] avray: update steps (#36765)

 static/avray/_custom.scss | 29 +++++++++++++++++++----------
 static/avray/_vars.scss   |  7 +++++++
 2 files changed, 26 insertions(+), 10 deletions(-)
static/avray/_custom.scss
511 511
div#rub_service h3 {
512 512
        border-bottom: 2px solid $title-color;
513 513
}
514
div#steps ol {
515
        & li.current {
516
                background: $title-color;
517
                color: $title-background;
518
        }
514
//steps
515
.wcs-step--marker {
516
	font-weight: bold;
519 517
}
520
@if ($responsive-steps == horizontal) {
521
	@media screen and (max-width: $mobile-limit) {
522
		div#steps ol li.current span.marker {
523
			background: $title-color;
524
			color: $title-background;
518
@include desktop-vertical-steps() {
519
	.wcs-step {
520
		padding-left: 0;
521
		&--label {
522
			margin-left: 0;
523
		}
524
		&.current {
525
			background-color: $primary-color;
526
		}
527
		&.current & {
528
			&--label {
529
				color: #fff;
530
				font-weight: normal;
531
			}
525 532
		}
526 533
	}
527 534
}
535

  
536

  
528 537
/* customization des liens dans les catégories de formulaires */
529 538
div#rub_service div.category ul,
530 539
div#services > ul > li > ul,
static/avray/_vars.scss
51 51

  
52 52
$table-headers-background: $title-color !default;
53 53
$table-headers-color: $title-background !default;
54

  
55
$wcs-steps-spacing: 0.7rem; 
56
$wcs-step-background: #fff;
57
$wcs-step-current-border-bottom: none;
58
$wcs-step-marker-color: #bbb;
59
$wcs-step-current-marker-color: #fff;
60
$wcs-step-current-marker-background: $primary-color;
54
-