Browse Source

Minor design fixes.

pull/601/head
Sebastian 5 years ago
parent
commit
a6d493df79
  1. 4
      frontend/app/framework/angular/forms/editors/tag-editor.component.scss
  2. 6
      frontend/app/shared/components/assets/asset.component.html

4
frontend/app/framework/angular/forms/editors/tag-editor.component.scss

@ -57,6 +57,10 @@ $inner-height: 1.75rem;
display: none !important;
}
.item {
padding-right: .5rem;
}
.icon-close {
display: none !important;
}

6
frontend/app/shared/components/assets/asset.component.html

@ -141,8 +141,8 @@
</td>
</ng-container>
<td class="col-actions text-right" *ngIf="!isDisabled">
<button type="button" class="btn btn-text-danger" *ngIf="!removeMode && asset.canDelete"
<td class="col-actions text-right">
<button type="button" class="btn btn-text-danger" *ngIf="!removeMode && asset.canDelete" [disabled]="isDisabled"
(sqxConfirmClick)="delete.emit()"
confirmTitle="i18n:assets.deleteConfirmTitle"
confirmText="i18n:assets.deleteConfirmText"
@ -150,7 +150,7 @@
<i class="icon-bin2"></i>
</button>
<button type="button" class="btn btn-text-secondary" *ngIf="removeMode"
<button type="button" class="btn btn-text-secondary" *ngIf="removeMode" [disabled]="isDisabled"
(sqxConfirmClick)="remove.emit()"
confirmTitle="i18n:assets.removeConfirmTitle"
confirmText="i18n:assets.removeConfirmText"

Loading…
Cancel
Save