Skip to content
Snippets Groups Projects
binary-file2.component.html 739 B
Newer Older
  • Learn to ignore specific revisions
  • OZGCloud's avatar
    OZGCloud committed
    <ods-attachment
      [documentName]="file.name"
      [description]="file.size | fileSizePlain"
      (click)="downloadFile()"
      [attr.aria-label]="'Anhang: Dateiname: ' + file.name"
    >
      <ods-spinner-icon spinner *ngIf="false" class="mr-3 size-10" />
      <ods-icon icon name="file-pdf" class="mr-3 size-10 fill-primary"></ods-icon>
      <button
        close
        *ngIf="deletable"
        class="absolute right-2 top-1/2 flex size-10 -translate-y-1/2 items-center justify-center rounded-md hover:border hover:border-ozggray-600 hover:bg-ozggray-100"
        (click)="deleteFile()"
        title="Anhang löschen"
        aria-label="Anhang löschen Button"
      >
        <ods-icon name="close" size="14" fillColor="black" class="ml-3 w-6"></ods-icon>
      </button>
    </ods-attachment>