Files
vscode/src/vs/platform/contextview/browser/contextMenuHandler.css
T
SteVen Batten d96141bb7a add functionality to hide open context menu (#64099)
* 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
2019-02-21 17:59:37 +01:00

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%;
}