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

FEAT #12072 TIME 0:10 fix css

parent 237d7f80
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
</div> </div>
</ng-container> </ng-container>
<ng-template #elseLoading> <ng-template #elseLoading>
<div class="row"> <div class="row" style="margin: 0px;">
<div class="col-md-12" style="padding-bottom: 10px;"> <div class="col-md-12" style="padding-bottom: 10px;">
<mat-button-toggle-group *ngIf="sendedResources.length > 0" class="filterTypes" (change)="filterType($event)"> <mat-button-toggle-group *ngIf="sendedResources.length > 0" class="filterTypes" (change)="filterType($event)">
<mat-button-toggle [checked]="currentFilter === ''" [value]="''">Tous</mat-button-toggle> <mat-button-toggle [checked]="currentFilter === ''" [value]="''">Tous</mat-button-toggle>
...@@ -34,10 +34,10 @@ ...@@ -34,10 +34,10 @@
Pris en charge : <b>{{row.creationDate | timeAgo : 'full'}}</b> Pris en charge : <b>{{row.creationDate | timeAgo : 'full'}}</b>
</span> </span>
</div> </div>
<div style="display: grid;grid-template-columns: 100px 1fr 170px;width: 100%;grid-gap: 10px;align-items: center;"> <div style="display: grid;grid-template-columns: 100px 1fr 170px;width: 100%;grid-gap: 10px;align-items: center;padding:10px;">
<div class="dateType"> <div class="dateType">
<span class="type"> <span class="type">
<span class="badge" [style.background]="row.typeColor">{{lang[row.type]}}</span> <span class="badge" [style.background]="row.typeColor" [title]="lang[row.type]">{{lang[row.type]}}</span>
<div class="attach"> <div class="attach">
<i *ngIf="row.hasMainDoc" class="fas fa-file" title="Document attaché"></i> <i *ngIf="row.hasMainDoc" class="fas fa-file" title="Document attaché"></i>
<i *ngIf="row.hasAttach" class="fas fa-paperclip" title="Pièce(s) jointe(s) attachée(s)"></i> <i *ngIf="row.hasAttach" class="fas fa-paperclip" title="Pièce(s) jointe(s) attachée(s)"></i>
...@@ -51,10 +51,10 @@ ...@@ -51,10 +51,10 @@
</div> </div>
<div class="contact"> <div class="contact">
<span *ngIf="row.sender" style="white-space: pre;overflow: hidden;text-overflow: ellipsis;"> <span *ngIf="row.sender" style="white-space: pre;overflow: hidden;text-overflow: ellipsis;" [title]="row.sender">
De : {{row.sender}} De : {{row.sender}}
</span> </span>
<span style="white-space: pre;overflow: hidden;text-overflow: ellipsis;"> <span style="white-space: pre;overflow: hidden;text-overflow: ellipsis;" [title]="row.recipients">
Pour : {{row.recipients}} Pour : {{row.recipients}}
</span> </span>
</div> </div>
......
...@@ -11,10 +11,13 @@ ...@@ -11,10 +11,13 @@
.type { .type {
.badge { .badge {
overflow: hidden;
text-overflow: ellipsis;
font-size: 10px !important; font-size: 10px !important;
color: white; color: white;
font-weight: normal; font-weight: normal;
width: 100px; width: 100px;
border-radius: .25em;
} }
} }
......
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