We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce2b88b commit a74adedCopy full SHA for a74aded
src/vs/base/browser/ui/contextview/contextview.css
@@ -5,14 +5,12 @@
5
6
.context-view {
7
position: absolute;
8
- z-index: 2500;
9
}
10
11
.context-view.fixed {
12
all: initial;
13
font-family: inherit;
14
font-size: 13px;
15
position: fixed;
16
17
color: inherit;
18
src/vs/base/browser/ui/contextview/contextview.ts
@@ -206,7 +206,7 @@ export class ContextView extends Disposable {
206
this.view.className = 'context-view';
207
this.view.style.top = '0px';
208
this.view.style.left = '0px';
209
- this.view.style.zIndex = '2500';
+ this.view.style.zIndex = '2575';
210
this.view.style.position = this.useFixedPosition ? 'fixed' : 'absolute';
211
DOM.show(this.view);
212
0 commit comments