diff --git a/src/ui/nehubaContainer/nehubaContainer.style.css b/src/ui/nehubaContainer/nehubaContainer.style.css index b95c5c9a9427d28b7475d842f383821b789a4c60..f5100b6837542f6cda0361ea4385bd47df2d025d 100644 --- a/src/ui/nehubaContainer/nehubaContainer.style.css +++ b/src/ui/nehubaContainer/nehubaContainer.style.css @@ -189,6 +189,3 @@ div#scratch-pad { margin-top: 1.5rem; } -.explore-other-template-item { - line-height: 1.3 !important; -} diff --git a/src/ui/nehubaContainer/nehubaContainer.template.html b/src/ui/nehubaContainer/nehubaContainer.template.html index a261706342601d83ce96c312f3b496fa5720831e..c1619ab4a938fe4a2094594411dfa0423b483191 100644 --- a/src/ui/nehubaContainer/nehubaContainer.template.html +++ b/src/ui/nehubaContainer/nehubaContainer.template.html @@ -341,12 +341,13 @@ <ng-template #exploreInOtherTmpl> <mat-list class="action-list sm cursor-default"> - <mat-list-item class="explore-other-template-item" *ngFor="let sameRegion of regionInOtherTemplates" + <mat-card class="p-0 border-0 box-shadow-none mt-1 tb-1" *ngFor="let sameRegion of regionInOtherTemplates" (click)="iavRegion.changeView(sameRegion)" [matTooltip]="sameRegion.template.name + (sameRegion.hemisphere ? (' - ' + sameRegion.hemisphere) : '')" mat-ripple> - {{ sameRegion.template.name + (sameRegion.hemisphere ? (' - ' + sameRegion.hemisphere) : '') }} - </mat-list-item> + {{ sameRegion.template.name + (sameRegion.hemisphere ? (' - ' + sameRegion.hemisphere) : '') }} + </small> + </mat-card> </mat-list> </ng-template>