mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-16 21:31:01 +01:00
d96141bb7a
* add functionality to hide open context menu fix toggling of ... menu on windows fix toggling of global activity bar menu on windows fix position of global activity bar menu on windows fixes #62413 fixes #61766 * addressing feedback * linting error * updating to eat mouse click to dismiss menu * remove native context menu changes as unnecessary * use an invisible div to block mouse * move logic into context menu handler * sanitize SNAP variables * rename update.channel to update.mode fixes #67407 * dervie status background from editor widget background
17 lines
505 B
CSS
17 lines
505 B
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.context-view .monaco-menu {
|
|
min-width: 130px;
|
|
}
|
|
|
|
.context-view-block {
|
|
position: fixed;
|
|
left:0;
|
|
top:0;
|
|
z-index: -1;
|
|
width: 100%;
|
|
height: 100%;
|
|
} |