wrap cipher list details for long names

This commit is contained in:
Kyle Spearrin 2018-08-16 08:46:49 -04:00
parent ea49d17c47
commit c892480086
2 changed files with 5 additions and 1 deletions

View File

@ -8,7 +8,7 @@
<td (click)="checkCipher(c)" class="table-list-icon">
<app-vault-icon [cipher]="c"></app-vault-icon>
</td>
<td (click)="checkCipher(c)" class="reduced-lh">
<td (click)="checkCipher(c)" class="reduced-lh wrap">
<a href="#" appStopClick appStopProp (click)="selectCipher(c)" title="{{'editItem' | i18n}}">{{c.name}}</a>
<i class="fa fa-share-alt" appStopProp *ngIf="!organization && c.organizationId" title="{{'shared' | i18n}}"></i>
<i class="fa fa-paperclip" appStopProp *ngIf="c.hasAttachments" title="{{'attachments' | i18n}}"></i>

View File

@ -319,6 +319,10 @@ label:not(.form-check-label):not(.btn) {
}
}
td.wrap {
word-break: break-all;
}
td.table-list-options {
width: 76px;
max-width: 76px;