Slightly update subscribe dialog styling

pull/184/head
Isaac Abadi 5 years ago
parent eb4ed32fcb
commit a481869166

@ -24,14 +24,16 @@
</div> </div>
<div class="col-12" *ngIf="!download_all"> <div class="col-12" *ngIf="!download_all">
<ng-container i18n="Download time range prefix">Download videos uploaded in the last</ng-container> <ng-container i18n="Download time range prefix">Download videos uploaded in the last</ng-container>
<mat-form-field color="accent" style="width: 50px; text-align: center"> <mat-form-field color="accent" style="width: 50px; text-align: center; margin-left: 10px;">
<input type="number" matInput [(ngModel)]="timerange_amount"> <input type="number" matInput [(ngModel)]="timerange_amount">
</mat-form-field> </mat-form-field>
<mat-select color="accent" class="unit-select" [(ngModel)]="timerange_unit"> <mat-form-field class="unit-select">
<mat-option *ngFor="let time_unit of time_units" [value]="time_unit + (timerange_amount === 1 ? '' : 's')"> <mat-select color="accent" [(ngModel)]="timerange_unit">
{{time_unit + (timerange_amount === 1 ? '' : 's')}} <mat-option *ngFor="let time_unit of time_units" [value]="time_unit + (timerange_amount === 1 ? '' : 's')">
</mat-option> {{time_unit + (timerange_amount === 1 ? '' : 's')}}
</mat-select> </mat-option>
</mat-select>
</mat-form-field>
</div> </div>
<div class="col-12"> <div class="col-12">
<div> <div>

Loading…
Cancel
Save