feat: Add support for custom menus and menubar on Windows/Linux (vscode v1.26.0)

Close #228
This commit is contained in:
Mattia Astorino 2018-08-09 22:02:50 +02:00
parent e98cb888bf
commit 681db679b9
No known key found for this signature in database
GPG key ID: 7BE552533AB6D4E2
2 changed files with 25 additions and 1 deletions

View file

@ -96,6 +96,18 @@
"panelTitle.activeBorder": {
"alpha": 100,
"value": null
},
"breadcrumb.activeSelectionForeground": {
"alpha": 100,
"value": null
},
"menu.selectionForeground": {
"alpha": 100,
"value": null
},
"menubar.selectionForeground": {
"alpha": 100,
"value": null
}
},
"changelog": {

View file

@ -823,6 +823,18 @@
"gitDecoration.untrackedResourceForeground": "{{variant.scheme.base.green}}90",
"gitDecoration.ignoredResourceForeground": "{{variant.scheme.sidebarForeground}}90",
"peekViewResult.selectionBackground": "{{variant.scheme.sidebarForeground}}70",
"settings.modifiedItemForeground": "{{commons.accents.Teal}}"
"settings.modifiedItemForeground": "{{commons.accents.Teal}}",
"breadcrumb.foreground": "{{variant.scheme.sidebarForeground}}",
"breadcrumb.focusForeground": "{{variant.scheme.foreground}}",
"breadcrumb.activeSelectionForeground": "{{commons.accents.Teal}}",
"breadcrumbPicker.background": "{{variant.scheme.backgroundAlt}}",
"menu.background": "{{variant.scheme.background}}",
"menu.foreground": "{{variant.scheme.sidebarForeground}}",
"menu.selectionBackground": "{{variant.scheme.inactiveSelectionBackground}}",
"menu.selectionForeground": "{{commons.accents.Teal}}",
"menu.selectionBorder": "{{variant.scheme.inactiveSelectionBackground}}",
"menubar.selectionBackground": "{{variant.scheme.inactiveSelectionBackground}}",
"menubar.selectionForeground": "{{commons.accents.Teal}}",
"menubar.selectionBorder": "{{variant.scheme.inactiveSelectionBackground}}"
}
}