mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-14 16:50:58 +03:00
switched from css to scss default style system cleaned up unused code in app component upated youtube search results styling downloading video from home screen now shows local progress bar under that video
15 lines
571 B
HTML
15 lines
571 B
HTML
<mat-card class="example-card mat-elevation-z6">
|
|
<button (click)="deleteFile()" class="deleteButton" mat-icon-button><mat-icon>delete_forever</mat-icon></button>
|
|
<div style="padding:5px">
|
|
<b><a href="javascript:void(0)" (click)="!isPlaylist ? mainComponent.goToFile(name, isAudio) : mainComponent.goToPlaylist(name, type)">{{title}}</a></b>
|
|
<br/>
|
|
ID: {{name}}
|
|
<div *ngIf="isPlaylist">Count: {{count}}</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="centered example-full-width-height"><img class="image" src="{{thumbnailURL}}" alt="Thumbnail"></div>
|
|
|
|
</mat-card>
|