mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 01:25:37 -05:00
Various results grid scrolling fixes (#5285)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -148,7 +148,7 @@
|
||||
|
||||
.vs ::-webkit-scrollbar {
|
||||
width: 14px;
|
||||
height: 10px;
|
||||
height: 12px;
|
||||
}
|
||||
.vs ::-webkit-scrollbar-thumb {
|
||||
background: hsla(0,0%,47%,.4);
|
||||
|
||||
Reference in New Issue
Block a user