Kavita/UI/Web/src/app/reading-list/reading-lists/reading-lists.component.html
Joseph Milazzo 92c60162ed
Side Nav Fixes (#1161)
* Fixed an issue where there was extra padding on top/bottom of readers when side nav was hidden.

* Fixed a bug where fit to screen wasn't forcing width scaling

* Added back total pages to many pages

* Fixed the padding on series detail cards

* Tweaked carousels to match series detail padding

* Fixed an issue where large amount of libraries could have 2 highlighted at once due to how highlight logic works on routes.

* Cleaned up some extra space in card detail layout due to moving title into compainion bar

* Moved some gloabls to global and moved color-scheme to body tag

* Moved scrollbar onto the body itself which helps with page jank on loading and fixes scrollbar not working with theme
2022-03-17 08:54:50 -07:00

21 lines
788 B
HTML

<app-side-nav-companion-bar [showGoBack]="true" pageHeader="Home">
<h1 title>
<app-card-actionables [actions]="actions"></app-card-actionables>
Reading Lists
</h1>
<h6 subtitle>{{pagination?.totalItems}} Items</h6>
</app-side-nav-companion-bar>
<app-card-detail-layout
[isLoading]="loadingLists"
[items]="lists"
[actions]="actions"
[pagination]="pagination"
[filteringDisabled]="true"
(pageChange)="onPageChange($event)"
>
<ng-template #cardItem let-item let-position="idx">
<app-card-item [title]="item.title" [entity]="item" [actions]="getActions(item)" [supressLibraryLink]="true" [imageUrl]="imageService.placeholderImage" (clicked)="handleClick(item)"></app-card-item>
</ng-template>
</app-card-detail-layout>