@theia/monaco 1.53.0-next.4 → 1.53.0-next.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/README.md +100 -100
  2. package/data/monaco-nls.json +1379 -1379
  3. package/data/monaco-themes/vscode/dark_plus.json +201 -201
  4. package/data/monaco-themes/vscode/dark_theia.json +5 -5
  5. package/data/monaco-themes/vscode/dark_vs.json +393 -393
  6. package/data/monaco-themes/vscode/hc_black.json +457 -457
  7. package/data/monaco-themes/vscode/hc_light.json +590 -590
  8. package/data/monaco-themes/vscode/hc_theia.json +5 -5
  9. package/data/monaco-themes/vscode/hc_theia_light.json +5 -5
  10. package/data/monaco-themes/vscode/light_plus.json +202 -202
  11. package/data/monaco-themes/vscode/light_theia.json +10 -10
  12. package/data/monaco-themes/vscode/light_vs.json +421 -421
  13. package/lib/browser/monaco-context-key-service.js +1 -1
  14. package/lib/browser/monaco-context-key-service.js.map +1 -1
  15. package/lib/browser/monaco-editor-model.d.ts +11 -5
  16. package/lib/browser/monaco-editor-model.d.ts.map +1 -1
  17. package/lib/browser/monaco-editor-model.js +2 -1
  18. package/lib/browser/monaco-editor-model.js.map +1 -1
  19. package/lib/browser/monaco-editor-service.js +1 -1
  20. package/lib/browser/monaco-editor-service.js.map +1 -1
  21. package/lib/browser/monaco-editor-zone-widget.js +1 -1
  22. package/lib/browser/monaco-editor.d.ts +5 -4
  23. package/lib/browser/monaco-editor.d.ts.map +1 -1
  24. package/lib/browser/monaco-editor.js +5 -2
  25. package/lib/browser/monaco-editor.js.map +1 -1
  26. package/lib/browser/monaco-frontend-application-contribution.js +25 -25
  27. package/lib/browser/monaco-quick-input-service.d.ts.map +1 -1
  28. package/lib/browser/monaco-quick-input-service.js +15 -15
  29. package/lib/browser/monaco-quick-input-service.js.map +1 -1
  30. package/lib/browser/monaco-text-model-service.d.ts +0 -10
  31. package/lib/browser/monaco-text-model-service.d.ts.map +1 -1
  32. package/lib/browser/monaco-text-model-service.js +0 -36
  33. package/lib/browser/monaco-text-model-service.js.map +1 -1
  34. package/lib/browser/monaco-to-protocol-converter.d.ts +2 -0
  35. package/lib/browser/monaco-to-protocol-converter.d.ts.map +1 -1
  36. package/lib/browser/monaco-to-protocol-converter.js +10 -0
  37. package/lib/browser/monaco-to-protocol-converter.js.map +1 -1
  38. package/package.json +9 -9
  39. package/src/browser/index.ts +17 -17
  40. package/src/browser/markdown-renderer/monaco-markdown-renderer.ts +109 -109
  41. package/src/browser/monaco-bulk-edit-service.ts +64 -64
  42. package/src/browser/monaco-color-registry.ts +73 -73
  43. package/src/browser/monaco-command-registry.ts +85 -85
  44. package/src/browser/monaco-command-service.ts +90 -90
  45. package/src/browser/monaco-command.ts +303 -303
  46. package/src/browser/monaco-context-key-service.ts +144 -144
  47. package/src/browser/monaco-context-menu.ts +112 -112
  48. package/src/browser/monaco-diff-editor.ts +141 -141
  49. package/src/browser/monaco-diff-navigator-factory.ts +39 -39
  50. package/src/browser/monaco-editor-model.ts +693 -685
  51. package/src/browser/monaco-editor-peek-view-widget.ts +233 -233
  52. package/src/browser/monaco-editor-provider.ts +455 -455
  53. package/src/browser/monaco-editor-service.ts +152 -152
  54. package/src/browser/monaco-editor-zone-widget.ts +250 -250
  55. package/src/browser/monaco-editor.ts +733 -729
  56. package/src/browser/monaco-formatting-conflicts.ts +116 -116
  57. package/src/browser/monaco-frontend-application-contribution.ts +182 -182
  58. package/src/browser/monaco-frontend-module.ts +319 -319
  59. package/src/browser/monaco-gotoline-quick-access.ts +47 -47
  60. package/src/browser/monaco-gotosymbol-quick-access.ts +53 -53
  61. package/src/browser/monaco-icon-registry.ts +49 -49
  62. package/src/browser/monaco-indexed-db.ts +130 -130
  63. package/src/browser/monaco-init.ts +134 -134
  64. package/src/browser/monaco-keybinding.ts +111 -111
  65. package/src/browser/monaco-keycode-map.ts +171 -171
  66. package/src/browser/monaco-languages.ts +177 -177
  67. package/src/browser/monaco-marker-collection.ts +83 -83
  68. package/src/browser/monaco-menu.ts +147 -147
  69. package/src/browser/monaco-mime-service.ts +71 -71
  70. package/src/browser/monaco-outline-contribution.ts +404 -404
  71. package/src/browser/monaco-outline-decorator.ts +66 -66
  72. package/src/browser/monaco-quick-access-registry.ts +112 -112
  73. package/src/browser/monaco-quick-input-service.ts +701 -702
  74. package/src/browser/monaco-resolved-keybinding.ts +162 -162
  75. package/src/browser/monaco-snippet-suggest-provider.ts +306 -306
  76. package/src/browser/monaco-standalone-theme-service.ts +51 -51
  77. package/src/browser/monaco-status-bar-contribution.ts +110 -110
  78. package/src/browser/monaco-text-model-service.ts +157 -199
  79. package/src/browser/monaco-theming-service.ts +204 -204
  80. package/src/browser/monaco-to-protocol-converter.ts +82 -71
  81. package/src/browser/monaco-undo-redo-handler.ts +64 -64
  82. package/src/browser/monaco-workspace.ts +416 -416
  83. package/src/browser/protocol-to-monaco-converter.ts +158 -158
  84. package/src/browser/simple-monaco-editor.ts +216 -216
  85. package/src/browser/style/index.css +266 -266
  86. package/src/browser/textmate/index.ts +20 -20
  87. package/src/browser/textmate/monaco-textmate-frontend-bindings.ts +90 -90
  88. package/src/browser/textmate/monaco-textmate-service.ts +187 -187
  89. package/src/browser/textmate/monaco-theme-registry.ts +176 -176
  90. package/src/browser/textmate/monaco-theme-types.ts +37 -37
  91. package/src/browser/textmate/textmate-contribution.ts +29 -29
  92. package/src/browser/textmate/textmate-registry.ts +129 -129
  93. package/src/browser/textmate/textmate-snippet-completion-provider.ts +73 -73
  94. package/src/browser/textmate/textmate-tokenizer.ts +84 -84
  95. package/src/browser/workspace-symbol-command.ts +196 -196
  96. package/src/package.spec.ts +28 -28
@@ -1,266 +1,266 @@
1
- .monaco-editor {
2
- padding-bottom: 5.6px;
3
- font-family: var(--theia-code-font-family);
4
- font-size: inherit !important;
5
- }
6
-
7
- #quick-input-container {
8
- position: fixed;
9
- right: 50%;
10
- z-index: 1000000;
11
- }
12
-
13
- /*
14
- * set z-index to 0, so tabs are not above overlay widgets
15
- */
16
- .p-TabBar.theia-app-centers {
17
- z-index: 0;
18
- display: flex;
19
- }
20
-
21
- .monaco-editor .zone-widget {
22
- position: absolute;
23
- z-index: 10;
24
- }
25
-
26
- .monaco-editor .zone-widget .zone-widget-container {
27
- border-top-style: solid;
28
- border-bottom-style: solid;
29
- border-top-width: 0;
30
- border-bottom-width: 0;
31
- border-top-color: var(--theia-peekView-border);
32
- border-bottom-color: var(--theia-peekView-border);
33
- position: relative;
34
- }
35
-
36
- .monaco-editor .parameter-hints-widget > .wrapper {
37
- overflow: hidden;
38
- }
39
-
40
- /* List highlight, see https://github.com/microsoft/vscode/blob/ff5f581425da6230b6f9216ecf19abf6c9d285a6/src/vs/workbench/browser/style.ts#L50 */
41
- .monaco-tree .monaco-tree-row .monaco-highlighted-label .highlight,
42
- .monaco-list .monaco-list-row .monaco-highlighted-label .highlight {
43
- color: var(--theia-list-highlightForeground) !important;
44
- }
45
-
46
- /* Scrollbars, see https://github.com/microsoft/vscode/blob/ff5f581425da6230b6f9216ecf19abf6c9d285a6/src/vs/workbench/browser/style.ts#L65 */
47
- .monaco-scrollable-element > .shadow.top {
48
- box-shadow: var(--theia-scrollbar-shadow) 0 6px 6px -6px inset !important;
49
- }
50
-
51
- .monaco-scrollable-element > .shadow.left {
52
- box-shadow: var(--theia-scrollbar-shadow) 6px 0 6px -6px inset !important;
53
- }
54
-
55
- .monaco-scrollable-element > .shadow.top.left {
56
- box-shadow: var(--theia-scrollbar-shadow) 6px 6px 6px -6px inset !important;
57
- }
58
-
59
- .monaco-scrollable-element > .scrollbar > .slider {
60
- background: var(--theia-scrollbarSlider-background) !important;
61
- }
62
-
63
- .monaco-scrollable-element > .scrollbar > .slider:hover {
64
- background: var(--theia-scrollbarSlider-hoverBackground) !important;
65
- }
66
-
67
- .monaco-scrollable-element > .scrollbar > .slider.active {
68
- background: var(--theia-scrollbarSlider-activeBackground) !important;
69
- }
70
-
71
- .monaco-editor .codicon.codicon-debug-start {
72
- color: var(--theia-debugIcon-startForeground) !important;
73
- }
74
-
75
- .monaco-editor .codelens-decoration a {
76
- color: inherit !important;
77
- }
78
-
79
- .monaco-editor .reference-zone-widget .ref-tree .referenceMatch .highlight {
80
- color: unset !important;
81
- }
82
-
83
- .monaco-editor .find-widget .monaco-inputbox.synthetic-focus {
84
- outline: var(--theia-border-width) solid;
85
- outline-offset: calc(-1 * var(--theia-border-width));
86
- outline-color: var(--theia-focusBorder);
87
- }
88
-
89
- .monaco-editor .rename-box input {
90
- color: var(--theia-editor-foreground);
91
- }
92
-
93
- .monaco-editor .rename-box .rename-label {
94
- opacity: 0.8;
95
- padding: 3px;
96
- font-family: sans-serif;
97
- }
98
-
99
- /* Monaco Quick Input */
100
- .quick-input-widget {
101
- background-color: var(--theia-quickInput-background) !important;
102
- color: var(--theia-foreground) !important;
103
- }
104
-
105
- .quick-input-list .monaco-list-row.focused {
106
- background-color: var(--theia-quickInputList-focusBackground) !important;
107
- }
108
-
109
- .quick-input-list .monaco-keybinding > .monaco-keybinding-key {
110
- color: inherit !important;
111
- }
112
-
113
- .quick-input-list .monaco-list-row.focused,
114
- .quick-input-list .monaco-list-row.focused .monaco-highlighted-label,
115
- .quick-input-list .monaco-list-row.focused .monaco-highlighted-label .codicon,
116
- .quick-input-list .monaco-list-row.focused .quick-input-list-entry .quick-input-list-separator,
117
- .quick-input-list .monaco-list-row.focused .monaco-highlighted-label .monaco-keybinding .monaco-keybinding-key,
118
- .quick-input-list .monaco-list-row.focused .monaco-highlighted-label .monaco-keybinding .monaco-keybinding-key-separator {
119
- color: var(--theia-quickInputList-focusForeground) !important;
120
- }
121
-
122
- .quick-input-list .monaco-list-row .codicon {
123
- color: var(--theia-foreground) !important;
124
- }
125
-
126
- .quick-input-list .monaco-list-row.focused .codicon {
127
- color: var(--theia-list-foreground) !important;
128
- }
129
-
130
- .quick-input-list .monaco-list-row.focused .monaco-highlighted-label .highlight {
131
- color: var(--theia-list-focusHighlightForeground) !important;
132
- }
133
-
134
- .quick-input-titlebar .action-item .action-label {
135
- color: var(--theia-foreground) !important;
136
- }
137
-
138
- .monaco-list-rows
139
- .monaco-list-row:not(:first-child)
140
- .quick-input-list-entry.quick-input-list-separator-border {
141
- border-top: 1px solid var(--theia-pickerGroup-border) !important;
142
- }
143
- .quick-input-list .quick-input-list-separator {
144
- color: var(--theia-pickerGroup-foreground) !important;
145
- }
146
-
147
- .monaco-icon-label > .monaco-icon-label-container {
148
- flex: 1;
149
- }
150
-
151
- .quick-input-list-rows
152
- .quick-input-list-row
153
- .monaco-icon-label
154
- .monaco-icon-description-container
155
- .label-description {
156
- font-family: var(--theia-ui-font-family);
157
- font-size: calc(var(--theia-ui-font-size1) * 0.9) !important;
158
- color: var(--theia-foreground) !important;
159
- white-space: inherit;
160
- }
161
-
162
- .quick-input-list-rows
163
- .quick-input-list-row
164
- .monaco-icon-label
165
- .monaco-icon-label-container
166
- .monaco-icon-name-container
167
- .label-name {
168
- font-family: var(--theia-ui-font-family);
169
- font-size: var(--theia-ui-font-size1) !important;
170
- color: var(--theia-foreground) !important;
171
- }
172
-
173
- .quick-input-list .monaco-icon-label.codicon,
174
- .quick-input-list .monaco-icon-label.file-icon {
175
- display: flex;
176
- text-align: left;
177
- }
178
-
179
- .quick-input-list .monaco-icon-label::before {
180
- height: 22px;
181
- }
182
-
183
- .codicon-file.default-file-icon.file-icon {
184
- padding-left: 2px;
185
- height: 22px;
186
- }
187
-
188
- .codicon-file.default-file-icon.file-icon::before {
189
- margin-right: 4px;
190
- font-size: var(--theia-ui-font-size1);
191
- }
192
-
193
- .quick-input-list .monaco-icon-label.codicon::before {
194
- position: relative;
195
- top: 3px;
196
- }
197
-
198
- .quick-input-list .monaco-icon-label.theia-file-icons-js {
199
- line-height: inherit;
200
- }
201
-
202
- .quick-input-list .quick-input-list-label {
203
- cursor: pointer !important;
204
- }
205
-
206
- .quick-input-progress.active.infinite {
207
- background-color: var(--theia-progressBar-background);
208
- width: 3%;
209
- /* `progress-animation` is defined in `packages/core/src/browser/style/progress-bar.css` */
210
- animation: progress-animation 1.3s 0s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
211
- }
212
-
213
- .monaco-list:not(.drop-target) .monaco-list-row:hover:not(.selected):not(.focused) {
214
- background: var(--theia-list-hoverBackground);
215
- }
216
-
217
- .monaco-editor .peekview-widget .head .peekview-title {
218
- font-family: var(--theia-ui-font-family);
219
- }
220
-
221
- .monaco-editor .peekview-widget .referenceMatch {
222
- font-family: var(--theia-ui-font-family);
223
- }
224
-
225
- .monaco-editor .find-widget .monaco-findInput .input,
226
- .monaco-editor .find-widget .matchesCount {
227
- font-family: var(--theia-ui-font-family);
228
- }
229
-
230
- .monaco-editor .monaco-action-bar .action-label.codicon {
231
- color: var(--theia-foreground);
232
- }
233
-
234
- .monaco-editor .monaco-action-bar .action-item.active {
235
- transform: none;
236
- }
237
-
238
- .monaco-editor .peekview-widget .monaco-list-row.focused.selected .label-name,
239
- .monaco-editor .peekview-widget .monaco-list-row.focused.selected .label-description,
240
- .monaco-editor .peekview-widget .monaco-list-row.focused.selected .monaco-highlighted-label,
241
- .monaco-editor .peekview-widget .monaco-list-row.focused.selected .codicon {
242
- color: var(--theia-list-activeSelectionForeground) !important;
243
- }
244
-
245
- .quick-input-titlebar {
246
- background-color: var(--theia-quickInputTitle-background);
247
- }
248
-
249
- .quick-input-widget input {
250
- background-color: var(--theia-input-background) !important;
251
- }
252
-
253
- .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused>.contents>.main .monaco-highlighted-label .highlight {
254
- color: var(--vscode-editorSuggestWidget-focusHighlightForeground) !important;
255
- }
256
-
257
- .symbol-icon-center {
258
- align-self: center;
259
- margin-right: 4px;
260
- }
261
-
262
- .monaco-inputbox.error > .ibwrapper > .input,
263
- .monaco-inputbox.warning > .ibwrapper > .input,
264
- .monaco-inputbox.info > .ibwrapper > .input {
265
- outline: 0 !important;
266
- }
1
+ .monaco-editor {
2
+ padding-bottom: 5.6px;
3
+ font-family: var(--theia-code-font-family);
4
+ font-size: inherit !important;
5
+ }
6
+
7
+ #quick-input-container {
8
+ position: fixed;
9
+ right: 50%;
10
+ z-index: 1000000;
11
+ }
12
+
13
+ /*
14
+ * set z-index to 0, so tabs are not above overlay widgets
15
+ */
16
+ .p-TabBar.theia-app-centers {
17
+ z-index: 0;
18
+ display: flex;
19
+ }
20
+
21
+ .monaco-editor .zone-widget {
22
+ position: absolute;
23
+ z-index: 10;
24
+ }
25
+
26
+ .monaco-editor .zone-widget .zone-widget-container {
27
+ border-top-style: solid;
28
+ border-bottom-style: solid;
29
+ border-top-width: 0;
30
+ border-bottom-width: 0;
31
+ border-top-color: var(--theia-peekView-border);
32
+ border-bottom-color: var(--theia-peekView-border);
33
+ position: relative;
34
+ }
35
+
36
+ .monaco-editor .parameter-hints-widget > .wrapper {
37
+ overflow: hidden;
38
+ }
39
+
40
+ /* List highlight, see https://github.com/microsoft/vscode/blob/ff5f581425da6230b6f9216ecf19abf6c9d285a6/src/vs/workbench/browser/style.ts#L50 */
41
+ .monaco-tree .monaco-tree-row .monaco-highlighted-label .highlight,
42
+ .monaco-list .monaco-list-row .monaco-highlighted-label .highlight {
43
+ color: var(--theia-list-highlightForeground) !important;
44
+ }
45
+
46
+ /* Scrollbars, see https://github.com/microsoft/vscode/blob/ff5f581425da6230b6f9216ecf19abf6c9d285a6/src/vs/workbench/browser/style.ts#L65 */
47
+ .monaco-scrollable-element > .shadow.top {
48
+ box-shadow: var(--theia-scrollbar-shadow) 0 6px 6px -6px inset !important;
49
+ }
50
+
51
+ .monaco-scrollable-element > .shadow.left {
52
+ box-shadow: var(--theia-scrollbar-shadow) 6px 0 6px -6px inset !important;
53
+ }
54
+
55
+ .monaco-scrollable-element > .shadow.top.left {
56
+ box-shadow: var(--theia-scrollbar-shadow) 6px 6px 6px -6px inset !important;
57
+ }
58
+
59
+ .monaco-scrollable-element > .scrollbar > .slider {
60
+ background: var(--theia-scrollbarSlider-background) !important;
61
+ }
62
+
63
+ .monaco-scrollable-element > .scrollbar > .slider:hover {
64
+ background: var(--theia-scrollbarSlider-hoverBackground) !important;
65
+ }
66
+
67
+ .monaco-scrollable-element > .scrollbar > .slider.active {
68
+ background: var(--theia-scrollbarSlider-activeBackground) !important;
69
+ }
70
+
71
+ .monaco-editor .codicon.codicon-debug-start {
72
+ color: var(--theia-debugIcon-startForeground) !important;
73
+ }
74
+
75
+ .monaco-editor .codelens-decoration a {
76
+ color: inherit !important;
77
+ }
78
+
79
+ .monaco-editor .reference-zone-widget .ref-tree .referenceMatch .highlight {
80
+ color: unset !important;
81
+ }
82
+
83
+ .monaco-editor .find-widget .monaco-inputbox.synthetic-focus {
84
+ outline: var(--theia-border-width) solid;
85
+ outline-offset: calc(-1 * var(--theia-border-width));
86
+ outline-color: var(--theia-focusBorder);
87
+ }
88
+
89
+ .monaco-editor .rename-box input {
90
+ color: var(--theia-editor-foreground);
91
+ }
92
+
93
+ .monaco-editor .rename-box .rename-label {
94
+ opacity: 0.8;
95
+ padding: 3px;
96
+ font-family: sans-serif;
97
+ }
98
+
99
+ /* Monaco Quick Input */
100
+ .quick-input-widget {
101
+ background-color: var(--theia-quickInput-background) !important;
102
+ color: var(--theia-foreground) !important;
103
+ }
104
+
105
+ .quick-input-list .monaco-list-row.focused {
106
+ background-color: var(--theia-quickInputList-focusBackground) !important;
107
+ }
108
+
109
+ .quick-input-list .monaco-keybinding > .monaco-keybinding-key {
110
+ color: inherit !important;
111
+ }
112
+
113
+ .quick-input-list .monaco-list-row.focused,
114
+ .quick-input-list .monaco-list-row.focused .monaco-highlighted-label,
115
+ .quick-input-list .monaco-list-row.focused .monaco-highlighted-label .codicon,
116
+ .quick-input-list .monaco-list-row.focused .quick-input-list-entry .quick-input-list-separator,
117
+ .quick-input-list .monaco-list-row.focused .monaco-highlighted-label .monaco-keybinding .monaco-keybinding-key,
118
+ .quick-input-list .monaco-list-row.focused .monaco-highlighted-label .monaco-keybinding .monaco-keybinding-key-separator {
119
+ color: var(--theia-quickInputList-focusForeground) !important;
120
+ }
121
+
122
+ .quick-input-list .monaco-list-row .codicon {
123
+ color: var(--theia-foreground) !important;
124
+ }
125
+
126
+ .quick-input-list .monaco-list-row.focused .codicon {
127
+ color: var(--theia-list-foreground) !important;
128
+ }
129
+
130
+ .quick-input-list .monaco-list-row.focused .monaco-highlighted-label .highlight {
131
+ color: var(--theia-list-focusHighlightForeground) !important;
132
+ }
133
+
134
+ .quick-input-titlebar .action-item .action-label {
135
+ color: var(--theia-foreground) !important;
136
+ }
137
+
138
+ .monaco-list-rows
139
+ .monaco-list-row:not(:first-child)
140
+ .quick-input-list-entry.quick-input-list-separator-border {
141
+ border-top: 1px solid var(--theia-pickerGroup-border) !important;
142
+ }
143
+ .quick-input-list .quick-input-list-separator {
144
+ color: var(--theia-pickerGroup-foreground) !important;
145
+ }
146
+
147
+ .monaco-icon-label > .monaco-icon-label-container {
148
+ flex: 1;
149
+ }
150
+
151
+ .quick-input-list-rows
152
+ .quick-input-list-row
153
+ .monaco-icon-label
154
+ .monaco-icon-description-container
155
+ .label-description {
156
+ font-family: var(--theia-ui-font-family);
157
+ font-size: calc(var(--theia-ui-font-size1) * 0.9) !important;
158
+ color: var(--theia-foreground) !important;
159
+ white-space: inherit;
160
+ }
161
+
162
+ .quick-input-list-rows
163
+ .quick-input-list-row
164
+ .monaco-icon-label
165
+ .monaco-icon-label-container
166
+ .monaco-icon-name-container
167
+ .label-name {
168
+ font-family: var(--theia-ui-font-family);
169
+ font-size: var(--theia-ui-font-size1) !important;
170
+ color: var(--theia-foreground) !important;
171
+ }
172
+
173
+ .quick-input-list .monaco-icon-label.codicon,
174
+ .quick-input-list .monaco-icon-label.file-icon {
175
+ display: flex;
176
+ text-align: left;
177
+ }
178
+
179
+ .quick-input-list .monaco-icon-label::before {
180
+ height: 22px;
181
+ }
182
+
183
+ .codicon-file.default-file-icon.file-icon {
184
+ padding-left: 2px;
185
+ height: 22px;
186
+ }
187
+
188
+ .codicon-file.default-file-icon.file-icon::before {
189
+ margin-right: 4px;
190
+ font-size: var(--theia-ui-font-size1);
191
+ }
192
+
193
+ .quick-input-list .monaco-icon-label.codicon::before {
194
+ position: relative;
195
+ top: 3px;
196
+ }
197
+
198
+ .quick-input-list .monaco-icon-label.theia-file-icons-js {
199
+ line-height: inherit;
200
+ }
201
+
202
+ .quick-input-list .quick-input-list-label {
203
+ cursor: pointer !important;
204
+ }
205
+
206
+ .quick-input-progress.active.infinite {
207
+ background-color: var(--theia-progressBar-background);
208
+ width: 3%;
209
+ /* `progress-animation` is defined in `packages/core/src/browser/style/progress-bar.css` */
210
+ animation: progress-animation 1.3s 0s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
211
+ }
212
+
213
+ .monaco-list:not(.drop-target) .monaco-list-row:hover:not(.selected):not(.focused) {
214
+ background: var(--theia-list-hoverBackground);
215
+ }
216
+
217
+ .monaco-editor .peekview-widget .head .peekview-title {
218
+ font-family: var(--theia-ui-font-family);
219
+ }
220
+
221
+ .monaco-editor .peekview-widget .referenceMatch {
222
+ font-family: var(--theia-ui-font-family);
223
+ }
224
+
225
+ .monaco-editor .find-widget .monaco-findInput .input,
226
+ .monaco-editor .find-widget .matchesCount {
227
+ font-family: var(--theia-ui-font-family);
228
+ }
229
+
230
+ .monaco-editor .monaco-action-bar .action-label.codicon {
231
+ color: var(--theia-foreground);
232
+ }
233
+
234
+ .monaco-editor .monaco-action-bar .action-item.active {
235
+ transform: none;
236
+ }
237
+
238
+ .monaco-editor .peekview-widget .monaco-list-row.focused.selected .label-name,
239
+ .monaco-editor .peekview-widget .monaco-list-row.focused.selected .label-description,
240
+ .monaco-editor .peekview-widget .monaco-list-row.focused.selected .monaco-highlighted-label,
241
+ .monaco-editor .peekview-widget .monaco-list-row.focused.selected .codicon {
242
+ color: var(--theia-list-activeSelectionForeground) !important;
243
+ }
244
+
245
+ .quick-input-titlebar {
246
+ background-color: var(--theia-quickInputTitle-background);
247
+ }
248
+
249
+ .quick-input-widget input {
250
+ background-color: var(--theia-input-background) !important;
251
+ }
252
+
253
+ .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused>.contents>.main .monaco-highlighted-label .highlight {
254
+ color: var(--vscode-editorSuggestWidget-focusHighlightForeground) !important;
255
+ }
256
+
257
+ .symbol-icon-center {
258
+ align-self: center;
259
+ margin-right: 4px;
260
+ }
261
+
262
+ .monaco-inputbox.error > .ibwrapper > .input,
263
+ .monaco-inputbox.warning > .ibwrapper > .input,
264
+ .monaco-inputbox.info > .ibwrapper > .input {
265
+ outline: 0 !important;
266
+ }
@@ -1,20 +1,20 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2018 Ericsson and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- export * from './textmate-registry';
18
- export * from './textmate-contribution';
19
- export * from './monaco-textmate-service';
20
- export * from './monaco-textmate-frontend-bindings';
1
+ // *****************************************************************************
2
+ // Copyright (C) 2018 Ericsson and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ export * from './textmate-registry';
18
+ export * from './textmate-contribution';
19
+ export * from './monaco-textmate-service';
20
+ export * from './monaco-textmate-frontend-bindings';