mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* [ACS-6081] Reduce references to internal Angular material CSS classes * [ACS-6081] rollback default scrollable value [ci:force] * [ACS-6081] linting * [ACS-6081] fix e2es * [ACS-6081] cr fix * [ACS-6081] remove adf-cli logger from e2es
19 lines
867 B
HTML
19 lines
867 B
HTML
<div class="aca-mobile-application-container">
|
|
<span>{{ 'APP.DIALOGS.MOBILE_APP.OPEN_ALFRESCO_MOBILE_APP' | translate }}</span>
|
|
<button mat-button class="aca-cross-button" (click)="onCloseDialog()">
|
|
<mat-icon class="aca-cross-button-icon">close</mat-icon>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="aca-open-in-app-container">
|
|
<button mat-button (click)="openInApp()" data-automation-id="open-in-app-button" class="aca-open-in-app-container-button" cdkFocusInitial>
|
|
<span>{{ 'APP.DIALOGS.MOBILE_APP.MOBILE_APP_BUTTON_LABEL' | translate }}</span>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="aca-download-app-container" *ngIf="appStoreUrl">
|
|
<button mat-button data-automation-id="download-app-button" class="aca-download-app-container-button" (click)="downloadIosApp()">
|
|
<span>{{ 'APP.DIALOGS.MOBILE_APP.DOWNLOAD_APP_BUTTON_LABEL' | translate }}</span>
|
|
</button>
|
|
</div>
|