[DURACOM-303] minor restyle of skeleton for mobile

This commit is contained in:
FrancescoMolinaro
2024-11-28 13:54:48 +01:00
parent 61eb14783e
commit d6f0f02c1a
4 changed files with 10 additions and 5 deletions

View File

@@ -1,11 +1,11 @@
<div class="row">
<div class="info-skeleton mb-2">
<div class="row flex-nowrap">
<div class="info-skeleton mb-2 col-12">
<ngx-skeleton-loader/>
</div>
</div>
@for (result of loadingResults; track result) {
<div class="row">
<div class="row flex-nowrap result-row">
@if(showThumbnails) {
<div class="thumbnail-skeleton">
<ngx-skeleton-loader/>

View File

@@ -25,3 +25,8 @@
}
}
}
.result-row {
margin-right: 0;
margin-left: 0;
}

View File

@@ -20,7 +20,7 @@
</ds-viewable-collection>
</div>
<ds-search-results-skeleton
*ngIf="true"
*ngIf="isLoading()"
[showThumbnails]="showThumbnails"
[numberOfResults]="searchConfig.pagination.pageSize"
></ds-search-results-skeleton>

View File

@@ -445,6 +445,6 @@ export class DefaultAppConfig implements AppConfig {
};
search: SearchConfig = {
defaultFilterCount: 2
defaultFilterCount: 5
}
}