@theia/monaco 1.22.0-next.3 → 1.22.0-next.7
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.
- package/package.json +8 -8
- package/src/browser/style/index.css +16 -0
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/monaco",
|
|
3
|
-
"version": "1.22.0-next.
|
|
3
|
+
"version": "1.22.0-next.7+ff1121f7f2b",
|
|
4
4
|
"description": "Theia - Monaco Extension",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/core": "1.22.0-next.
|
|
7
|
-
"@theia/editor": "1.22.0-next.
|
|
8
|
-
"@theia/filesystem": "1.22.0-next.
|
|
9
|
-
"@theia/markers": "1.22.0-next.
|
|
6
|
+
"@theia/core": "1.22.0-next.7+ff1121f7f2b",
|
|
7
|
+
"@theia/editor": "1.22.0-next.7+ff1121f7f2b",
|
|
8
|
+
"@theia/filesystem": "1.22.0-next.7+ff1121f7f2b",
|
|
9
|
+
"@theia/markers": "1.22.0-next.7+ff1121f7f2b",
|
|
10
10
|
"@theia/monaco-editor-core": "0.23.0",
|
|
11
|
-
"@theia/outline-view": "1.22.0-next.
|
|
12
|
-
"@theia/workspace": "1.22.0-next.
|
|
11
|
+
"@theia/outline-view": "1.22.0-next.7+ff1121f7f2b",
|
|
12
|
+
"@theia/workspace": "1.22.0-next.7+ff1121f7f2b",
|
|
13
13
|
"fast-plist": "^0.1.2",
|
|
14
14
|
"idb": "^4.0.5",
|
|
15
15
|
"jsonc-parser": "^2.2.0",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"nyc": {
|
|
57
57
|
"extends": "../../configs/nyc.json"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "ff1121f7f2b42324ded29d8ef70838cb0941083d"
|
|
60
60
|
}
|
|
@@ -163,6 +163,22 @@
|
|
|
163
163
|
color: var(--theia-quickInputList-focusForeground) !important;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
+
.quick-input-list .monaco-list-row .codicon {
|
|
167
|
+
color: var(--theia-foreground) !important;
|
|
168
|
+
padding-left: 0px !important;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.quick-input-list .monaco-list-row.focused .codicon {
|
|
172
|
+
color: var(--theia-list-foreground) !important;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.monaco-action-bar .action-item {
|
|
176
|
+
height: var(--theia-ui-icon-font-size);
|
|
177
|
+
width: var(--theia-ui-icon-font-size);
|
|
178
|
+
margin: auto;
|
|
179
|
+
padding-right: calc(var(--theia-ui-padding) * 0.5);
|
|
180
|
+
}
|
|
181
|
+
|
|
166
182
|
.quick-input-list .monaco-list-row.focused .monaco-highlighted-label .highlight {
|
|
167
183
|
color: var(--theia-list-focusHighlightForeground) !important;
|
|
168
184
|
}
|