Misc UI fixes (#1461)
* Misc fixes - Fixed modal being stretched when not needed. - Fixed Logo vertical align - Fixed drawer content scroll, and from it being squished due to overridden by bootstrap. * series detail cover image stretch fix - Fixes: Fixes series detail cover image being stretched on larger resolutions * fixing empty lists scrollbar * Fixing want to read error * fixing unnecessary scrollbar * Fixing recently updated tooltip
This commit is contained in:
parent
ca2137fbfe
commit
ff26a45c9b
14 changed files with 69 additions and 19 deletions
|
|
@ -26,9 +26,18 @@
|
|||
(selection)="bulkSelectionService.handleCardSelection('series', position, series.length, $event)" [selected]="bulkSelectionService.isCardSelected('series', position)" [allowSelection]="true"
|
||||
></app-series-card>
|
||||
</ng-template>
|
||||
|
||||
<div *ngIf="!filterActive && series.length === 0">
|
||||
<ng-template #noData>
|
||||
There are no items. Try adding a series.
|
||||
</ng-template>
|
||||
</div>
|
||||
|
||||
<div *ngIf="filterActive && series.length === 0">
|
||||
<ng-template #noData>
|
||||
No items match your current filter.
|
||||
</ng-template>
|
||||
</div>
|
||||
|
||||
<ng-template #noData>
|
||||
No Series match your filter or exist in your list.
|
||||
</ng-template>
|
||||
</app-card-detail-layout>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue