-
Notifications
You must be signed in to change notification settings - Fork 30k
/
exceptionWidget.css
35 lines (29 loc) · 1.22 KB
/
exceptionWidget.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.monaco-editor .zone-widget .zone-widget-container.exception-widget {
padding: 6px 10px;
white-space: pre-wrap;
-webkit-user-select: text;
-ms-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-o-user-select: text;
user-select: text;
}
.monaco-editor .zone-widget .zone-widget-container.exception-widget .title {
font-weight: bold;
}
.monaco-editor .zone-widget .zone-widget-container.exception-widget .message {
font-family: Monaco, Menlo, Consolas, "Droid Sans Mono", "Inconsolata", "Courier New", monospace, "Droid Sans Fallback";
margin-top: 0.5em;
}
/* High Contrast Theming */
.monaco-workbench.mac .zone-widget .zone-widget-container.exception-widget {
font-size: 11px;
}
.monaco-workbench.windows .zone-widget .zone-widget-container.exception-widget,
.monaco-workbench.linux .zone-widget .zone-widget-container.exception-widget {
font-size: 13px;
}