mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-10 08:36:38 -05:00
* 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
21 lines
788 B
HTML
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>
|