attachments list icon
This commit is contained in:
parent
de9780a756
commit
f05c6ccddd
|
@ -4,7 +4,7 @@
|
|||
<div class="modal-header">
|
||||
<h2 class="modal-title">
|
||||
{{'attachments' | i18n}}
|
||||
<small>{{cipher.name}}</small>
|
||||
<small *ngIf="cipher">{{cipher.name}}</small>
|
||||
</h2>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
|
@ -14,9 +14,12 @@
|
|||
<table class="table table-hover table-list" *ngIf="cipher && cipher.hasAttachments">
|
||||
<tbody>
|
||||
<tr *ngFor="let a of cipher.attachments">
|
||||
<td class="table-list-icon">
|
||||
<i class="fa fa-fw fa-lg fa-file-o" *ngIf="!a.downloading"></i>
|
||||
<i class="fa fa-spinner fa-lg fa-fw fa-spin" *ngIf="a.downloading"></i>
|
||||
</td>
|
||||
<td>
|
||||
<a href="#" appStopClick appBlurCLick (click)="download(a)">{{a.fileName}}</a>
|
||||
<i class="fa fa-spinner fa-fw fa-spin text-muted" *ngIf="a.downloading"></i>
|
||||
<br>
|
||||
<small>{{a.sizeName}}</small>
|
||||
</td>
|
||||
|
|
|
@ -2,16 +2,16 @@
|
|||
<table class="table table-hover table-list table-ciphers" *ngIf="searchedCiphers.length > 0">
|
||||
<tbody>
|
||||
<tr *ngFor="let c of searchedCiphers">
|
||||
<td (click)="checkCipher(c)">
|
||||
<td (click)="checkCipher(c)" class="table-list-checkbox">
|
||||
<input type="checkbox" [(ngModel)]="c.checked">
|
||||
</td>
|
||||
<td (click)="checkCipher(c)">
|
||||
<td (click)="checkCipher(c)" class="table-list-icon">
|
||||
<app-vault-icon [cipher]="c"></app-vault-icon>
|
||||
</td>
|
||||
<td (click)="checkCipher(c)">
|
||||
<a href="#" appStopClick appStopProp (click)="selectCipher(c)" title="{{'editItem' | i18n}}">{{c.name}}</a>
|
||||
<i class="fa fa-share-alt text-muted" appStopProp *ngIf="c.organizationId" title="{{'shared' | i18n}}"></i>
|
||||
<i class="fa fa-paperclip text-muted" appStopProp *ngIf="c.hasAttachments" title="{{'attachments' | i18n}}"></i>
|
||||
<i class="fa fa-share-alt" appStopProp *ngIf="c.organizationId" title="{{'shared' | i18n}}"></i>
|
||||
<i class="fa fa-paperclip" appStopProp *ngIf="c.hasAttachments" title="{{'attachments' | i18n}}"></i>
|
||||
<br>
|
||||
<small appStopProp>{{c.subTitle}}</small>
|
||||
</td>
|
||||
|
|
|
@ -162,7 +162,7 @@ form label {
|
|||
vertical-align: middle;
|
||||
line-height: 1;
|
||||
|
||||
small {
|
||||
small, > .fa, .icon {
|
||||
color: $text-muted;
|
||||
}
|
||||
}
|
||||
|
@ -188,29 +188,21 @@ form label {
|
|||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
app-vault-icon .fa {
|
||||
color: $text-muted;
|
||||
}
|
||||
td.table-list-icon {
|
||||
width: 45px;
|
||||
max-width: 45px;
|
||||
text-align: center;
|
||||
|
||||
app-vault {
|
||||
.table-ciphers {
|
||||
td:first-child {
|
||||
width: 35px;
|
||||
max-width: 35px;
|
||||
img {
|
||||
@extend .rounded;
|
||||
@extend .img-fluid;
|
||||
}
|
||||
}
|
||||
|
||||
td:nth-child(2) {
|
||||
width: 45px;
|
||||
max-width: 45px;
|
||||
text-align: center;
|
||||
|
||||
img {
|
||||
@extend .rounded;
|
||||
@extend .img-fluid;
|
||||
}
|
||||
}
|
||||
td.table-list-checkbox {
|
||||
width: 35px;
|
||||
max-width: 35px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue