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

FEAT #15155 TIME 0:10 fix action refactoring

parent 02eefdca
No related branches found
No related tags found
No related merge requests found
...@@ -108,7 +108,7 @@ ...@@ -108,7 +108,7 @@
<!-- Expanded Content Column - The detail row is made up of this one column that spans across all columns --> <!-- Expanded Content Column - The detail row is made up of this one column that spans across all columns -->
<ng-container matColumnDef="expandedDetail"> <ng-container matColumnDef="expandedDetail">
<td mat-cell *matCellDef="let element" [attr.colspan]="columnsToDisplay.length" style="border-bottom: none;"> <td mat-cell *matCellDef="let element" [attr.colspan]="columnsToDisplay.length" style="border-bottom: none;padding:0px;">
<div class="example-element-detail" <div class="example-element-detail"
[@detailExpand]="element == archives ? 'expanded' : 'collapsed'"> [@detailExpand]="element == archives ? 'expanded' : 'collapsed'">
<div style="padding-bottom: 10px;"> <div style="padding-bottom: 10px;">
...@@ -123,16 +123,16 @@ ...@@ -123,16 +123,16 @@
</span> </span>
</div> </div>
<div style="max-height: 150px;overflow: auto;width: 100%;display: grid;grid-template-columns: auto 1fr auto;grid-gap:10px;font-size: 90%;padding-left: 20px;"> <div style="max-height: 150px;overflow: auto;width: 100%;display: grid;grid-template-columns: auto auto 1fr;grid-gap:10px;font-size: 90%;padding-left: 20px;padding-right: 20px;">
<ng-container *ngFor="let archive of element.archives;let i=index;"> <ng-container *ngFor="let archive of element.archives;let i=index;">
<div style="border-bottom: solid 1px rgba(0,0,0,0.12);color:#666" [title]="archive.otherInfo">
{{archive.otherInfo}}
</div>
<div color="primary" style="border-bottom: solid 1px rgba(0,0,0,0.12);"> <div color="primary" style="border-bottom: solid 1px rgba(0,0,0,0.12);">
{{'lang.' + archive.type | translate}} {{'lang.' + archive.type | translate}}
</div> </div>
<div style="border-bottom: solid 1px rgba(0,0,0,0.12);" [title]="archive.label"> <div style="border-bottom: solid 1px rgba(0,0,0,0.12);" [title]="archive.label">
{{archive.label | shorten : 50:'...'}} {{archive.label}}
</div>
<div style="border-bottom: solid 1px rgba(0,0,0,0.12);" [title]="archive.otherInfo">
{{archive.otherInfo}}
</div> </div>
</ng-container> </ng-container>
</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