Skip to content

Commit fedd09c

Browse files
committedJul 25, 2023
fix: handle room recordings table responsive design KMCNG-2506
1 parent 0143f85 commit fedd09c

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed
 

‎src/applications/content-rooms-app/room/room-recordings/room-recordings.component.html

+13-13
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,26 @@
1818
<th [ngStyle]="{'width':'124px', 'padding-left': '24px'}">
1919
{{'applications.content.entryDetails.thumbnails.thumbnail' | translate}}
2020
</th>
21-
<th [kpSortableColumn]="'name'">
21+
<th [kpSortableColumn]="'name'" [ngStyle]="{'width':'40%'}">
2222
{{'applications.content.table.name' | translate}}
2323
<p-sortIcon [field]="'name'"></p-sortIcon>
2424
</th>
25-
<th [ngStyle]="{'width':'100px'}">
25+
<th [ngStyle]="{'width':'15%'}">
2626
{{'applications.content.table.id' | translate}}
2727
</th>
28-
<th [ngStyle]="{'width':'150px'}" [pSortableColumn]="'createdAt'">
28+
<th [ngStyle]="{'width':'15%'}" [pSortableColumn]="'createdAt'">
2929
{{'applications.settings.reach.table.created' | translate}}
3030
<p-sortIcon [field]="'createdAt'"></p-sortIcon>
3131
</th>
32-
<th [ngStyle]="{'width':'90px'}" [pSortableColumn]="'duration'">
32+
<th [ngStyle]="{'width':'10%'}" [pSortableColumn]="'duration'">
3333
{{'applications.content.table.duration' | translate}}
3434
<p-sortIcon [field]="'duration'"></p-sortIcon>
3535
</th>
36-
<th [ngStyle]="{'width':'80px'}" [pSortableColumn]="'plays'">
36+
<th [ngStyle]="{'width':'10%'}" [pSortableColumn]="'plays'">
3737
{{'applications.content.table.plays' | translate}}
3838
<p-sortIcon [field]="'plays'"></p-sortIcon>
3939
</th>
40-
<th [ngStyle]="{'width':'80px'}">
40+
<th [ngStyle]="{'width':'10%'}">
4141
{{'applications.content.table.status' | translate}}
4242
</th>
4343
<th [ngStyle]="{'width':'80px'}"></th>
@@ -52,14 +52,14 @@
5252
<i class="kIconimage"></i>
5353
</div>
5454
</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>
5757
</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>
6363
<td [ngStyle]="{'width':'80px'}" *ngIf="_kmcPermissions.CONTENT_MANAGE_THUMBNAIL | kNgIfPermitted">
6464
<div class="kThumbnailsTableActions" *ngIf="recording.id !== ''">
6565
<button type="button" pButton class="kMoreActionsButton" icon="kIconmore"

0 commit comments

Comments
 (0)
Please sign in to comment.