Skip to content

Commit fad2f42

Browse files
author
Tajudeen
committed
new version to fix windows dropdown bug
1 parent a501e39 commit fad2f42

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

product.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"nameShort": "CortexIDE",
33
"nameLong": "CortexIDE",
4-
"cortexVersion": "0.0.6",
5-
"cortexRelease": "0600",
4+
"cortexVersion": "0.0.7",
5+
"cortexRelease": "0700",
66
"applicationName": "cortexide",
77
"dataFolderName": ".cortexide",
88
"win32MutexName": "cortexide",

src/vs/base/browser/ui/menu/menubar.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,13 @@
5656
border-radius: 5px;
5757
}
5858

59+
/* Standalone rule for when menu is appended to document.body (Windows) */
60+
.menubar-menu-items-holder {
61+
position: fixed;
62+
opacity: 1;
63+
z-index: 3500;
64+
}
65+
5966
.menubar .menubar-menu-items-holder {
6067
position: fixed;
6168
left: 0px;
@@ -67,6 +74,16 @@
6774
position: fixed;
6875
}
6976

77+
/* Standalone rule for when menu is appended to document.body (Windows) */
78+
.menubar-menu-items-holder.monaco-menu-container {
79+
outline: 0;
80+
border: none;
81+
}
82+
83+
.menubar-menu-items-holder.monaco-menu-container :focus {
84+
outline: 0;
85+
}
86+
7087
.menubar .menubar-menu-items-holder.monaco-menu-container {
7188
outline: 0;
7289
border: none;

0 commit comments

Comments
 (0)