Skip to content

Commit

Permalink
accordion manual search spacing, better color, rm unused template var…
Browse files Browse the repository at this point in the history
…iable
  • Loading branch information
lardbit committed Jan 2, 2024
1 parent 7af8e84 commit 1d041fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/frontend/src/app/media/media-t-v.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ <h3 class="media-title">{{ tmdbShow.name }}</h3>
<div class="row">
<div class="col-12 col-md-6 mb-3 position-relative">
<ngx-loading [show]="isSaving"></ngx-loading>
<div ngbAccordion #accordion="ngbAccordion">
<div ngbAccordionItem [collapsed]="true" *ngFor="let season of tmdbShow.seasons">
<div ngbAccordion>
<div ngbAccordionItem class="bg-dark" [collapsed]="true" *ngFor="let season of tmdbShow.seasons">
<div ngbAccordionHeader class="d-flex justify-content-between py-2">
<!-- header left -->
<button class="btn btn-link" ngbAccordionToggle>Season {{ season.season_number }}</button>
Expand Down Expand Up @@ -120,7 +120,7 @@ <h3 class="media-title">{{ tmdbShow.name }}</h3>
<div class="d-flex justify-content-end my-2" *ngIf="userIsStaff() && !isWatchingSeason(season)">
<form class="form">
<input class="form-check-input" type="checkbox" [(ngModel)]="isManualSearchEnabled" name="manualSearch" id="toggle-manual-search">
<label class="form-check-label" for="toggle-manual-search" placement="left" ngbTooltip="Enable option to manually search torrents vs automatically downloading them">Manual</label>
<label class="form-check-label ms-2" for="toggle-manual-search" placement="left" ngbTooltip="Enable option to manually search torrents vs automatically downloading them">Manual</label>
</form>
</div>
</form>
Expand Down

0 comments on commit 1d041fd

Please sign in to comment.