未验证 提交 be5e9106 编写于 作者: S SteVen Batten 提交者: GitHub

add high contrast border color to editor actions (#68964)

上级 2b69fb93
......@@ -1149,6 +1149,16 @@ registerThemingParticipant((theme: ITheme, collector: ICssStyleCollector) => {
`);
}
// High Contrast Border Color for Editor Actions
const contrastBorderColor = theme.getColor(contrastBorder);
if (contrastBorder) {
collector.addRule(`
.monaco-workbench .part.editor > .content .editor-group-container > .title .editor-actions {
outline: 1px solid ${contrastBorderColor}
}
`);
}
// Hover Background
const tabHoverBackground = theme.getColor(TAB_HOVER_BACKGROUND);
if (tabHoverBackground) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册