|
18 | 18 | <th [ngStyle]="{'width':'124px', 'padding-left': '24px'}">
|
19 | 19 | {{'applications.content.entryDetails.thumbnails.thumbnail' | translate}}
|
20 | 20 | </th>
|
21 |
| - <th [kpSortableColumn]="'name'"> |
| 21 | + <th [kpSortableColumn]="'name'" [ngStyle]="{'width':'40%'}"> |
22 | 22 | {{'applications.content.table.name' | translate}}
|
23 | 23 | <p-sortIcon [field]="'name'"></p-sortIcon>
|
24 | 24 | </th>
|
25 |
| - <th [ngStyle]="{'width':'100px'}"> |
| 25 | + <th [ngStyle]="{'width':'15%'}"> |
26 | 26 | {{'applications.content.table.id' | translate}}
|
27 | 27 | </th>
|
28 |
| - <th [ngStyle]="{'width':'150px'}" [pSortableColumn]="'createdAt'"> |
| 28 | + <th [ngStyle]="{'width':'15%'}" [pSortableColumn]="'createdAt'"> |
29 | 29 | {{'applications.settings.reach.table.created' | translate}}
|
30 | 30 | <p-sortIcon [field]="'createdAt'"></p-sortIcon>
|
31 | 31 | </th>
|
32 |
| - <th [ngStyle]="{'width':'90px'}" [pSortableColumn]="'duration'"> |
| 32 | + <th [ngStyle]="{'width':'10%'}" [pSortableColumn]="'duration'"> |
33 | 33 | {{'applications.content.table.duration' | translate}}
|
34 | 34 | <p-sortIcon [field]="'duration'"></p-sortIcon>
|
35 | 35 | </th>
|
36 |
| - <th [ngStyle]="{'width':'80px'}" [pSortableColumn]="'plays'"> |
| 36 | + <th [ngStyle]="{'width':'10%'}" [pSortableColumn]="'plays'"> |
37 | 37 | {{'applications.content.table.plays' | translate}}
|
38 | 38 | <p-sortIcon [field]="'plays'"></p-sortIcon>
|
39 | 39 | </th>
|
40 |
| - <th [ngStyle]="{'width':'80px'}"> |
| 40 | + <th [ngStyle]="{'width':'10%'}"> |
41 | 41 | {{'applications.content.table.status' | translate}}
|
42 | 42 | </th>
|
43 | 43 | <th [ngStyle]="{'width':'80px'}"></th>
|
|
52 | 52 | <i class="kIconimage"></i>
|
53 | 53 | </div>
|
54 | 54 | </td>
|
55 |
| - <td> |
56 |
| - <span class="kName">{{recording.name}}</span> |
| 55 | + <td [ngStyle]="{'width':'40%'}"> |
| 56 | + <span class="kName" [kTooltip]="recording.name" [showOnEllipsis]="true">{{recording.name}}</span> |
57 | 57 | </td>
|
58 |
| - <td [ngStyle]="{'width':'100px'}">{{recording.id}}</td> |
59 |
| - <td [ngStyle]="{'width':'150px'}">{{recording.createdAt | kmcDate}}</td> |
60 |
| - <td [ngStyle]="{'width':'90px'}">{{recording.duration | kTime}}</td> |
61 |
| - <td [ngStyle]="{'width':'80px'}">{{recording.plays}}</td> |
62 |
| - <td [ngStyle]="{'width':'80px'}">{{recording | entryStatus}}</td> |
| 58 | + <td [ngStyle]="{'width':'15%'}" [kTooltip]="recording.id" [showOnEllipsis]="true">{{recording.id}}</td> |
| 59 | + <td [ngStyle]="{'width':'15%'}" [kTooltip]="recording.createdAt | kmcDate" [showOnEllipsis]="true">{{recording.createdAt | kmcDate}}</td> |
| 60 | + <td [ngStyle]="{'width':'10%'}" [kTooltip]="recording.duration | kTime" [showOnEllipsis]="true">{{recording.duration | kTime}}</td> |
| 61 | + <td [ngStyle]="{'width':'10%'}" [kTooltip]="recording.plays" [showOnEllipsis]="true">{{recording.plays}}</td> |
| 62 | + <td [ngStyle]="{'width':'10%'}" [kTooltip]="recording | entryStatus" [showOnEllipsis]="true">{{recording | entryStatus}}</td> |
63 | 63 | <td [ngStyle]="{'width':'80px'}" *ngIf="_kmcPermissions.CONTENT_MANAGE_THUMBNAIL | kNgIfPermitted">
|
64 | 64 | <div class="kThumbnailsTableActions" *ngIf="recording.id !== ''">
|
65 | 65 | <button type="button" pButton class="kMoreActionsButton" icon="kIconmore"
|
|
0 commit comments