Skip to content

Commit a74aded

Browse files
authored
1 parent ce2b88b commit a74aded

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/vs/base/browser/ui/contextview/contextview.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@
55

66
.context-view {
77
position: absolute;
8-
z-index: 2500;
98
}
109

1110
.context-view.fixed {
1211
all: initial;
1312
font-family: inherit;
1413
font-size: 13px;
1514
position: fixed;
16-
z-index: 2500;
1715
color: inherit;
1816
}

src/vs/base/browser/ui/contextview/contextview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export class ContextView extends Disposable {
206206
this.view.className = 'context-view';
207207
this.view.style.top = '0px';
208208
this.view.style.left = '0px';
209-
this.view.style.zIndex = '2500';
209+
this.view.style.zIndex = '2575';
210210
this.view.style.position = this.useFixedPosition ? 'fixed' : 'absolute';
211211
DOM.show(this.view);
212212

0 commit comments

Comments
 (0)