Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix vod context menu overflow #240

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/app/app.page/app.page.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ <h4 class="card-title text-left" i18n="@@newLiveStreamCardTitle">
<br>
<div class="mat-container mat-elevation-z0">

<mat-table [dataSource]="dataSourceVod" matSort
<mat-table [dataSource]="dataSourceVod" matSort style="overflow: visible !important;"
(matSortChange)="sortVodList($event)">

<!-- Checkbox Column -->
Expand Down Expand Up @@ -952,12 +952,13 @@ <h4 class="card-title text-left" i18n="@@newLiveStreamCardTitle">
<mat-header-cell [ngClass]="'action-column'" *matHeaderCellDef class="text-right"> Actions
</mat-header-cell>


<mat-cell style="overflow: visible !important; "
[ngClass]="'action-column'" *matCellDef="let row"
class="text-right">

<div style="font-size: 1.1em">
<ul class="nav navbar-right" >
<ul class="nav navbar-right" >
<li (click)="contextDropdownClicked()" class="dropdown">
<a href="#" class="dropdown-toggle btn-magnify"
data-toggle="dropdown">
Expand Down