Merge pull request #5072 from tsiegleauq/vscroll-performance
Fix flickering in tables
This commit is contained in:
commit
c2b89c0bb2
@ -15,7 +15,6 @@
|
|||||||
<pbl-ngrid
|
<pbl-ngrid
|
||||||
[ngClass]="cssClasses"
|
[ngClass]="cssClasses"
|
||||||
[vScrollFixed]="vScrollFixed"
|
[vScrollFixed]="vScrollFixed"
|
||||||
cellTooltip
|
|
||||||
[showHeader]="!showFilterBar"
|
[showHeader]="!showFilterBar"
|
||||||
matCheckboxSelection="selection"
|
matCheckboxSelection="selection"
|
||||||
[dataSource]="dataSource"
|
[dataSource]="dataSource"
|
||||||
|
@ -35,16 +35,14 @@
|
|||||||
[routerLink]="getDetailUrl(item)"
|
[routerLink]="getDetailUrl(item)"
|
||||||
*ngIf="!isMultiSelect"
|
*ngIf="!isMultiSelect"
|
||||||
></a>
|
></a>
|
||||||
<div [ngStyle]="{ 'margin-left': item.level * 25 + 'px' }">
|
<div [ngStyle]="{ 'margin-left': item.level * 25 + 'px' }" class="innerTable ellipsis-overflow">
|
||||||
<os-icon-container [noWrap]="true" [icon]="item.closed ? 'check' : null" size="large">
|
<os-icon-container [noWrap]="true" [icon]="item.closed ? 'check' : null" size="large">
|
||||||
<div>
|
<span>
|
||||||
<div>
|
|
||||||
{{ item.getListTitle() }}
|
{{ item.getListTitle() }}
|
||||||
</div>
|
</span>
|
||||||
<div *ngIf="showSubtitle" class="subtitle">
|
<span *ngIf="showSubtitle" class="subtitle ">
|
||||||
{{ item.getSubtitle() }}
|
{{ item.getSubtitle() }}
|
||||||
</div>
|
</span>
|
||||||
</div>
|
|
||||||
</os-icon-container>
|
</os-icon-container>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -82,7 +82,7 @@
|
|||||||
</span>
|
</span>
|
||||||
|
|
||||||
<!-- The title -->
|
<!-- The title -->
|
||||||
<span class="motion-list-title">
|
<span>
|
||||||
<span *ngIf="vp.isMobile && motion.identifier">
|
<span *ngIf="vp.isMobile && motion.identifier">
|
||||||
{{ motion.identifier }}
|
{{ motion.identifier }}
|
||||||
<span>·</span>
|
<span>·</span>
|
||||||
|
@ -162,9 +162,8 @@ $narrow-spacing: (
|
|||||||
}
|
}
|
||||||
|
|
||||||
.pbl-ngrid-cell {
|
.pbl-ngrid-cell {
|
||||||
position: relative;
|
|
||||||
|
|
||||||
.fill {
|
.fill {
|
||||||
|
position: relative;
|
||||||
display: inherit;
|
display: inherit;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
Loading…
Reference in New Issue
Block a user