Various results grid scrolling fixes (#5285)

This commit is contained in:
Karl Burtram
2019-05-01 12:36:16 -07:00
committed by GitHub
parent 104b99ffa0
commit c1cb9000a9
5 changed files with 42 additions and 44 deletions

View File

@@ -611,9 +611,9 @@ export class ScrollableSplitView extends HeightMap implements IDisposable {
} else {
item.size = size;
this.updateSize(item.view.id!, size);
let top = item.top + item.size;
for (let i = index + 1; i < this.viewItems.length; i++) {
let currentItem = this.viewItems[i];
let top: number = 0;
for (let i = 0; i < this.viewItems.length; i++) {
let currentItem: IViewItem = this.viewItems[i];
this.updateTop(currentItem.view.id!, top);
top += currentItem.size;
}

View File

@@ -148,7 +148,7 @@
.vs ::-webkit-scrollbar {
width: 14px;
height: 10px;
height: 12px;
}
.vs ::-webkit-scrollbar-thumb {
background: hsla(0,0%,47%,.4);