mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 04:49:33 -07:00
Add 1em to margin top of the genre drop down
This commit is contained in:
parent
2c94f982c6
commit
9082aaeeb9
1 changed files with 21 additions and 17 deletions
|
@ -33,15 +33,17 @@
|
||||||
<i matChipRemove class="fas fa-times fa-lg"></i>
|
<i matChipRemove class="fas fa-times fa-lg"></i>
|
||||||
</mat-chip>
|
</mat-chip>
|
||||||
</mat-chip-list>
|
</mat-chip-list>
|
||||||
|
|
||||||
<mat-form-field appearance="outline" >
|
<div class="md-form-field" style="margin-top:1em;">
|
||||||
<mat-label>Movie Genres</mat-label>
|
<mat-form-field appearance="outline" >
|
||||||
<mat-select formControlName="excludedMovieGenres" multiple>
|
<mat-label>Movie Genres</mat-label>
|
||||||
<mat-option *ngFor="let genre of filteredMovieGenres" [value]="genre.id">
|
<mat-select formControlName="excludedMovieGenres" multiple>
|
||||||
{{genre.name}}
|
<mat-option *ngFor="let genre of filteredMovieGenres" [value]="genre.id">
|
||||||
</mat-option>
|
{{genre.name}}
|
||||||
</mat-select>
|
</mat-option>
|
||||||
</mat-form-field>
|
</mat-select>
|
||||||
|
</mat-form-field>
|
||||||
|
</div>
|
||||||
|
|
||||||
<mat-chip-list #chipList>
|
<mat-chip-list #chipList>
|
||||||
<mat-chip *ngFor="let key of excludedMovieGenres" [selectable]="false" [removable]="true"
|
<mat-chip *ngFor="let key of excludedMovieGenres" [selectable]="false" [removable]="true"
|
||||||
|
@ -51,14 +53,16 @@
|
||||||
</mat-chip>
|
</mat-chip>
|
||||||
</mat-chip-list>
|
</mat-chip-list>
|
||||||
|
|
||||||
<mat-form-field appearance="outline" >
|
<div class="md-form-field" style="margin-top:1em;">
|
||||||
<mat-label>Tv Genres</mat-label>
|
<mat-form-field appearance="outline" >
|
||||||
<mat-select formControlName="excludedTvGenres" multiple>
|
<mat-label>Tv Genres</mat-label>
|
||||||
<mat-option *ngFor="let genre of filteredTvGenres" [value]="genre.id">
|
<mat-select formControlName="excludedTvGenres" multiple>
|
||||||
{{genre.name}}
|
<mat-option *ngFor="let genre of filteredTvGenres" [value]="genre.id">
|
||||||
</mat-option>
|
{{genre.name}}
|
||||||
</mat-select>
|
</mat-option>
|
||||||
</mat-form-field>
|
</mat-select>
|
||||||
|
</mat-form-field>
|
||||||
|
</div>
|
||||||
|
|
||||||
<mat-chip-list #chipList>
|
<mat-chip-list #chipList>
|
||||||
<mat-chip *ngFor="let key of excludedTvGenres" [selectable]="false" [removable]="true"
|
<mat-chip *ngFor="let key of excludedTvGenres" [selectable]="false" [removable]="true"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue