diff --git a/src/app/admin/components/structures-list/admin-structures-list.component.html b/src/app/admin/components/structures-list/admin-structures-list.component.html index e483cbb350108cfbbcc1d9e32260f61eafbc8945..e71fd4da012c24f52571f9975c140edad6e83333 100644 --- a/src/app/admin/components/structures-list/admin-structures-list.component.html +++ b/src/app/admin/components/structures-list/admin-structures-list.component.html @@ -1,5 +1,5 @@ <div *ngIf="isLoading" class="loader"> - <img class="loader-gif" src="/assets/gif/loader_circle.gif" alt /> + <img class="loader-gif" src="/assets/gif/loader_circle_grey.gif" alt /> </div> <div *ngIf="!isLoading" fxLayout="column" fxLayoutAlign="center center"> <table aria-describedby="demands attachment results" class="results-tab results-column"> @@ -12,8 +12,8 @@ <tr *ngFor="let structure of structuresIncomplete"> <td> <a class="incomplete" href="/acteurs?id={{ structure.structureId }}" target="_blank"> - {{ structure.structureName }}</a - > + {{ structure.structureName }} + </a> </td> <td class="structure-updated-at"> <span [ngClass]="{ isOutdated: structure.isOutdated }">{{ structure.updatedAt | date: 'mediumDate' }}</span> @@ -31,7 +31,7 @@ <tbody> <tr *ngFor="let structure of structuresInClaim"> <td> - <a href="/acteurs?id={{ structure.structureId }}" target="_blank"> {{ structure.structureName }}</a> + <a href="/acteurs?id={{ structure.structureId }}" target="_blank">{{ structure.structureName }}</a> </td> <td class="structure-updated-at"> <span [ngClass]="{ isOutdated: structure.isOutdated }">{{ structure.updatedAt | date: 'mediumDate' }}</span> @@ -49,7 +49,7 @@ <tbody> <tr *ngFor="let structure of structuresToClaim"> <td> - <a href="/acteurs?id={{ structure.structureId }}" target="_blank"> {{ structure.structureName }}</a> + <a href="/acteurs?id={{ structure.structureId }}" target="_blank">{{ structure.structureName }}</a> </td> <td class="structure-updated-at"> <span [ngClass]="{ isOutdated: structure.isOutdated }">{{ structure.updatedAt | date: 'mediumDate' }}</span> @@ -67,7 +67,7 @@ <tbody> <tr *ngFor="let structure of structuresClaimed"> <td> - <a href="/acteurs?id={{ structure.structureId }}" target="_blank"> {{ structure.structureName }}</a> + <a href="/acteurs?id={{ structure.structureId }}" target="_blank">{{ structure.structureName }}</a> </td> <td class="structure-updated-at"> <span [ngClass]="{ isOutdated: structure.isOutdated }">{{ structure.updatedAt | date: 'mediumDate' }}</span> diff --git a/src/app/app.component.html b/src/app/app.component.html index a5afdc51616968078d2bae7d1249adb71da37652..337f59111f2cc7a94ad8f7eba157d89f6b458450 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -2,9 +2,9 @@ <app-header></app-header> <div class="app-body"> <div *ngIf="loading" class="loader"> - <img class="loader-gif" src="/assets/gif/loader_circle.gif" alt /> + <img class="loader-gif" src="/assets/gif/loader_circle_grey.gif" alt /> </div> - <ng-container> </ng-container> + <ng-container></ng-container> <router-outlet name="left-pane"></router-outlet> <router-outlet></router-outlet> <router-outlet name="print"></router-outlet> diff --git a/src/app/form/orientation-form/component/structure-list-print/structure-list-print.component.html b/src/app/form/orientation-form/component/structure-list-print/structure-list-print.component.html index 0a11c4df1ed0cee744165f6a2332d6128793368f..a37cdea870eaa73dbce6db032f09a6591149f1c0 100644 --- a/src/app/form/orientation-form/component/structure-list-print/structure-list-print.component.html +++ b/src/app/form/orientation-form/component/structure-list-print/structure-list-print.component.html @@ -10,6 +10,6 @@ <app-structure-detail-print [structure]="structure"></app-structure-detail-print> </div> <div class="loader"> - <img class="loader-gif" src="/assets/gif/loader_circle.gif" alt /> + <img class="loader-gif" src="/assets/gif/loader_circle_grey.gif" alt /> <p>Liste en cours d'impression</p> </div> diff --git a/src/app/post/components/post-list/post-list.component.html b/src/app/post/components/post-list/post-list.component.html index cc5dd6778a3406568f8512d23c3a9f897996da7b..833cbbc94e29aa5cadb44fbb08de271d8efc38a2 100644 --- a/src/app/post/components/post-list/post-list.component.html +++ b/src/app/post/components/post-list/post-list.component.html @@ -25,7 +25,7 @@ </div> </div> <div *ngIf="isLoading" class="loader"> - <img class="loader-gif" src="/assets/gif/loader_circle.gif" alt /> + <img class="loader-gif" src="/assets/gif/loader_circle_grey.gif" alt /> </div> <div *ngIf="!isLastPage && !isLoading" fxLayout="row" fxLayoutAlign="center center"> <button class="btn-primary small" (click)="loadMore()"> diff --git a/src/assets/gif/loader_circle.gif b/src/assets/gif/loader_circle.gif index d6e6ff141451ac14ade4b62c97c353fa0b31faf1..e76b3dd352d3fcc82cbe47979b626bc5e4afd7d6 100644 Binary files a/src/assets/gif/loader_circle.gif and b/src/assets/gif/loader_circle.gif differ diff --git a/src/assets/gif/loader_circle_grey.gif b/src/assets/gif/loader_circle_grey.gif new file mode 100644 index 0000000000000000000000000000000000000000..b4704f696128e504ce4e3ec8179b7b3c11faefec Binary files /dev/null and b/src/assets/gif/loader_circle_grey.gif differ