mirror of
https://github.com/coder/code-server.git
synced 2026-05-06 20:41:59 +02:00
Merge commit 'be3e8236086165e5e45a5a10783823874b3f3ebd' as 'lib/vscode'
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import Severity from 'vs/base/common/severity';
|
||||
import { registerThemingParticipant } from 'vs/platform/theme/common/themeService';
|
||||
import { problemsErrorIconForeground, problemsInfoIconForeground, problemsWarningIconForeground } from 'vs/platform/theme/common/colorRegistry';
|
||||
import { Codicon } from 'vs/base/common/codicons';
|
||||
|
||||
export namespace SeverityIcon {
|
||||
|
||||
export function className(severity: Severity): string {
|
||||
switch (severity) {
|
||||
case Severity.Ignore:
|
||||
return 'severity-ignore ' + Codicon.info.classNames;
|
||||
case Severity.Info:
|
||||
return Codicon.info.classNames;
|
||||
case Severity.Warning:
|
||||
return Codicon.warning.classNames;
|
||||
case Severity.Error:
|
||||
return Codicon.error.classNames;
|
||||
default:
|
||||
return '';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
registerThemingParticipant((theme, collector) => {
|
||||
|
||||
const errorIconForeground = theme.getColor(problemsErrorIconForeground);
|
||||
if (errorIconForeground) {
|
||||
const errorCodiconSelector = Codicon.error.cssSelector;
|
||||
collector.addRule(`
|
||||
.monaco-editor .zone-widget ${errorCodiconSelector},
|
||||
.markers-panel .marker-icon${errorCodiconSelector},
|
||||
.extensions-viewlet > .extensions ${errorCodiconSelector} {
|
||||
color: ${errorIconForeground};
|
||||
}
|
||||
`);
|
||||
}
|
||||
|
||||
const warningIconForeground = theme.getColor(problemsWarningIconForeground);
|
||||
if (warningIconForeground) {
|
||||
const warningCodiconSelector = Codicon.warning.cssSelector;
|
||||
collector.addRule(`
|
||||
.monaco-editor .zone-widget ${warningCodiconSelector},
|
||||
.markers-panel .marker-icon${warningCodiconSelector},
|
||||
.extensions-viewlet > .extensions ${warningCodiconSelector},
|
||||
.extension-editor ${warningCodiconSelector} {
|
||||
color: ${warningIconForeground};
|
||||
}
|
||||
`);
|
||||
}
|
||||
|
||||
const infoIconForeground = theme.getColor(problemsInfoIconForeground);
|
||||
if (infoIconForeground) {
|
||||
const infoCodiconSelector = Codicon.info.cssSelector;
|
||||
collector.addRule(`
|
||||
.monaco-editor .zone-widget ${infoCodiconSelector},
|
||||
.markers-panel .marker-icon${infoCodiconSelector},
|
||||
.extensions-viewlet > .extensions ${infoCodiconSelector},
|
||||
.extension-editor ${infoCodiconSelector} {
|
||||
color: ${infoIconForeground};
|
||||
}
|
||||
`);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user