mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
highlight current step in stepper
This commit is contained in:
parent
4233a8eb7e
commit
a3db9b7cd5
@ -17,10 +17,42 @@
|
||||
<div class="step-bar-progress" [ngStyle]="{ width: (step_current / step_max) * 100 + '%' }"></div>
|
||||
</div>
|
||||
<div class="shortcuts">
|
||||
<a class="shortcut" href="#" [routerLink]="['/administration/step/1']">1</a>
|
||||
<a class="shortcut" href="#" [routerLink]="['/administration/step/2']">2</a>
|
||||
<a class="shortcut" href="#" [routerLink]="['/administration/step/3']">3</a>
|
||||
<a class="shortcut" href="#" [routerLink]="['/administration/step/4']">4</a>
|
||||
<a class="shortcut" href="#" [routerLink]="['/administration/step/5']">5</a>
|
||||
<a
|
||||
class="shortcut"
|
||||
href="#"
|
||||
[routerLink]="['/administration/step/1']"
|
||||
[ngClass]="{ 'is-active': pollService.step_current == 1 }"
|
||||
>1</a
|
||||
>
|
||||
<a
|
||||
class="shortcut"
|
||||
href="#"
|
||||
[routerLink]="['/administration/step/2']"
|
||||
[ngClass]="{ 'is-active': pollService.step_current == 2 }"
|
||||
>2</a
|
||||
>
|
||||
<a
|
||||
class="shortcut"
|
||||
href="#"
|
||||
[routerLink]="['/administration/step/3']"
|
||||
[ngClass]="{ 'is-active': pollService.step_current == 3 }"
|
||||
>3</a
|
||||
>
|
||||
<a
|
||||
class="shortcut"
|
||||
href="#"
|
||||
[routerLink]="['/administration/step/4']"
|
||||
[ngClass]="{ 'is-active': pollService.step_current == 4 }"
|
||||
>4</a
|
||||
>
|
||||
<a
|
||||
class="shortcut"
|
||||
href="#"
|
||||
[routerLink]="['/administration/step/5']"
|
||||
[ngClass]="{ 'is-active': pollService.step_current == 5 }"
|
||||
>5</a
|
||||
>
|
||||
<!-- <a class="shortcut" href="#" [routerLink]="['/administration/step/6']" [ngClass]="{'is-active':pollService.step_current == 6}">6</a>-->
|
||||
<!-- <a class="shortcut" href="#" [routerLink]="['/administration/step/7']" [ngClass]="{'is-active':pollService.step_current == 7}">7</a>-->
|
||||
</div>
|
||||
</section>
|
||||
|
@ -18,7 +18,7 @@
|
||||
background: $primary_color;
|
||||
}
|
||||
.shortcut {
|
||||
background: $secondary_color;
|
||||
background: $dark-lavender;
|
||||
color: white;
|
||||
padding: 1em;
|
||||
margin: 1em;
|
||||
@ -26,4 +26,10 @@
|
||||
border-radius: 100%;
|
||||
text-align: center;
|
||||
width: 4em;
|
||||
&.is-active {
|
||||
background: $font_color;
|
||||
}
|
||||
}
|
||||
.poll-title {
|
||||
color: $d-neutral;
|
||||
}
|
||||
|
@ -25,8 +25,8 @@ $beige-lighter: #eff0eb;
|
||||
|
||||
$d-primary: #3e3882; // bleu 800
|
||||
$d-primary-intense: #6359cf; // bleu 600
|
||||
$d-grey: #f6f5fd; // bleu 30
|
||||
$d-neutral: #767486; // bleu 30
|
||||
$d-grey: #f6f5fd;
|
||||
$d-neutral: #767486;
|
||||
$d-alt: #a9607f;
|
||||
|
||||
$d-info: #ecf4ff;
|
||||
|
Loading…
Reference in New Issue
Block a user