mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
remove outline on click, disable active outline, add aria-label to nav steps
This commit is contained in:
parent
ec6abfb680
commit
c52153770d
@ -3,6 +3,7 @@
|
||||
<button
|
||||
*ngIf="display_previous_button"
|
||||
class="button-previous is-secondary"
|
||||
[attr.aria-label]="'nav.previous' | translate"
|
||||
[routerLink]="['/administration/step/' + previous_step_number]"
|
||||
>
|
||||
{{ 'nav.previous' | translate }}
|
||||
@ -11,6 +12,7 @@
|
||||
<button
|
||||
*ngIf="display_next_button"
|
||||
class="button-next pull-right"
|
||||
[attr.aria-label]="(is_finish_step ? 'nav.save' : 'nav.next') | translate"
|
||||
[ngClass]="{ 'is-finish': is_finish_step, 'is-primary': !is_finish_step }"
|
||||
[routerLink]="['/administration/step/' + next_step_number]"
|
||||
(click)="runNextAction()"
|
||||
|
@ -1,9 +1,12 @@
|
||||
<div class="selector language-selector-container">
|
||||
<button id="lang_button_popup{{ idSuffix }}" class="lang-button" (click)="openDialogLang()">
|
||||
<button
|
||||
id="lang_button_popup{{ idSuffix }}"
|
||||
class="lang-button"
|
||||
(click)="openDialogLang()"
|
||||
[attr.aria-label]="'LANGUAGES_SHORT.' + currentLang.toUpperCase() | translate"
|
||||
>
|
||||
<i class="fa fa-language"></i>
|
||||
{{ 'LANGUAGES_SHORT.' + currentLang.toUpperCase() | translate }}
|
||||
<!-- <i class="fa fa-language lang-selector-icon clickable" ></i>-->
|
||||
<!-- <i class="fa fa-chevron-down"></i>-->
|
||||
</button>
|
||||
<p-dialog
|
||||
[modal]="true"
|
||||
|
@ -1,6 +1,5 @@
|
||||
.outlined {
|
||||
&:focus,
|
||||
&:active {
|
||||
&:focus {
|
||||
outline: black;
|
||||
outline-style: solid;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user