Skip to content
Snippets Groups Projects
Commit 6a982c25 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

update csss

parent 1ae2226f
No related branches found
No related tags found
No related merge requests found
...@@ -228,12 +228,13 @@ ...@@ -228,12 +228,13 @@
<i class="fa fa-plus fa-2x" title="Créer une pièce jointe"></i> <i class="fa fa-plus fa-2x" title="Créer une pièce jointe"></i>
</div> </div>
<div class="panelRightContent" *ngIf="signatureBook.attachments"> <div class="panelRightContent" *ngIf="signatureBook.attachments">
<div style="position: relative;" [ngStyle]="{'color': attachment.status == 'SIGN' ? '#FDD16C' : '#666'}" class="item" *ngFor="let attachment of signatureBook.attachments; let i = index" (click)="changeRightViewer(i)" [ngClass]="{'panelSelectedThumbnail': i == rightSelectedThumbnail}"> <div style="position: relative;" class="item" *ngFor="let attachment of signatureBook.attachments; let i = index" (click)="changeRightViewer(i)" [ngClass]="{'panelSelectedThumbnail': i == rightSelectedThumbnail}">
<span class="fa-stack fa-lg"> <span class="fa-stack fa-lg">
<i class="fa fa-file-o fa-stack-2x"></i><i class="fa {{attachment.icon}} fa-stack-1x"></i> <i class="fa fa-file-o fa-stack-2x"></i><i class="fa {{attachment.icon}} fa-stack-1x"></i>
</span> </span>
<!-- TO DO : ADD IF FOR PJ SIGN --> <!-- TO DO : ADD IF FOR PJ SIGN -->
<i style="position: absolute;top: 2px;right: 2px;" class="fa fa-certificate"></i> <i *ngIf="attachment.status == 'SIGN'" style="position: absolute;top: 2px;right: 2px;" class="fa fa-circle"></i>
<i *ngIf="attachment.status != 'SIGN'" style="position: absolute;top: 2px;right: 2px;" class="fa fa-circle-o"></i>
</div> </div>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment