mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
[ACS-8497] Resolved issue where icons in file upload overlay were not displaying properly (#10038)
This commit is contained in:
parent
98a18a2a7a
commit
db97f05f28
@ -1,5 +1,5 @@
|
|||||||
<div class="adf-file-uploading-row">
|
<div class="adf-file-uploading-row">
|
||||||
<mat-icon *ngIf="mimeType === 'default'" matListItemLine class="adf-file-uploading-row__type">
|
<mat-icon *ngIf="mimeType === 'default'" matListItemIcon class="adf-file-uploading-row__type">
|
||||||
insert_drive_file
|
insert_drive_file
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
|
|
||||||
@ -12,10 +12,10 @@
|
|||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span *ngIf="isUploadVersion()" class="adf-file-uploading-row__version" tabindex="0" >
|
<span *ngIf="isUploadVersion()" class="adf-file-uploading-row__version" tabindex="0" >
|
||||||
<mat-chip-option color="primary"
|
<mat-chip color="primary"
|
||||||
[attr.aria-label]="'ADF_FILE_UPLOAD.ARIA-LABEL.VERSION' | translate: { version: versionNumber }"
|
[attr.aria-label]="'ADF_FILE_UPLOAD.ARIA-LABEL.VERSION' | translate: { version: versionNumber }"
|
||||||
[title]="'version' + versionNumber" [disabled]="true"
|
[title]="'version' + versionNumber"
|
||||||
>{{ versionNumber }}</mat-chip-option>
|
>{{ versionNumber }}</mat-chip>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
@ -61,7 +61,7 @@
|
|||||||
[attr.aria-label]="'ADF_FILE_UPLOAD.STATUS.FILE_DONE_STATUS' | translate"
|
[attr.aria-label]="'ADF_FILE_UPLOAD.STATUS.FILE_DONE_STATUS' | translate"
|
||||||
>
|
>
|
||||||
<mat-icon
|
<mat-icon
|
||||||
matListItemLine
|
matListItemIcon
|
||||||
class="adf-file-uploading-row__status--done">
|
class="adf-file-uploading-row__status--done">
|
||||||
check_circle
|
check_circle
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
@ -94,7 +94,7 @@
|
|||||||
role="status"
|
role="status"
|
||||||
*ngIf="isUploadError()"
|
*ngIf="isUploadError()"
|
||||||
class="adf-file-uploading-row__block adf-file-uploading-row__status--error">
|
class="adf-file-uploading-row__block adf-file-uploading-row__status--error">
|
||||||
<mat-icon matListItemLine
|
<mat-icon matListItemIcon
|
||||||
[attr.aria-label]="'ADF_FILE_UPLOAD.ARIA-LABEL.UPLOAD_FILE_ERROR' | translate: { error: file.errorCode | adfFileUploadError }"
|
[attr.aria-label]="'ADF_FILE_UPLOAD.ARIA-LABEL.UPLOAD_FILE_ERROR' | translate: { error: file.errorCode | adfFileUploadError }"
|
||||||
[title]="file.errorCode | adfFileUploadError">
|
[title]="file.errorCode | adfFileUploadError">
|
||||||
report_problem
|
report_problem
|
||||||
|
@ -32,6 +32,7 @@ adf-file-uploading-list-row:not(:first-child) {
|
|||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
padding: 0 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__group--toggle {
|
&__group--toggle {
|
||||||
@ -48,6 +49,7 @@ adf-file-uploading-list-row:not(:first-child) {
|
|||||||
|
|
||||||
&__status--error {
|
&__status--error {
|
||||||
color: var(--theme-warn-color);
|
color: var(--theme-warn-color);
|
||||||
|
padding: 0 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__action--cancel {
|
&__action--cancel {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user