@theia/vsx-registry 1.39.0-next.12 → 1.39.0-next.16
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/lib/browser/recommended-extensions/preference-provider-overrides.js +1 -1
- package/lib/browser/recommended-extensions/preference-provider-overrides.js.map +1 -1
- package/lib/browser/recommended-extensions/recommended-extensions-json-schema.js +1 -1
- package/lib/browser/recommended-extensions/recommended-extensions-json-schema.js.map +1 -1
- package/lib/browser/recommended-extensions/recommended-extensions-preference-contribution.js +1 -1
- package/lib/browser/recommended-extensions/recommended-extensions-preference-contribution.js.map +1 -1
- package/lib/browser/vsx-extension-commands.js +1 -1
- package/lib/browser/vsx-extension-commands.js.map +1 -1
- package/lib/browser/vsx-extension-editor-manager.js +1 -1
- package/lib/browser/vsx-extension-editor-manager.js.map +1 -1
- package/lib/browser/vsx-extension-editor.js +1 -1
- package/lib/browser/vsx-extension-editor.js.map +1 -1
- package/lib/browser/vsx-extension.js +1 -1
- package/lib/browser/vsx-extension.js.map +1 -1
- package/lib/browser/vsx-extensions-contribution.js +1 -1
- package/lib/browser/vsx-extensions-contribution.js.map +1 -1
- package/lib/browser/vsx-extensions-model.js +1 -1
- package/lib/browser/vsx-extensions-model.js.map +1 -1
- package/lib/browser/vsx-extensions-search-bar.js +1 -1
- package/lib/browser/vsx-extensions-search-bar.js.map +1 -1
- package/lib/browser/vsx-extensions-search-model.js +1 -1
- package/lib/browser/vsx-extensions-search-model.js.map +1 -1
- package/lib/browser/vsx-extensions-source.js +1 -1
- package/lib/browser/vsx-extensions-source.js.map +1 -1
- package/lib/browser/vsx-extensions-view-container.d.ts +1 -1
- package/lib/browser/vsx-extensions-view-container.js +1 -1
- package/lib/browser/vsx-extensions-widget.js +1 -1
- package/lib/browser/vsx-extensions-widget.js.map +1 -1
- package/lib/browser/vsx-language-quick-pick-service.js +1 -1
- package/lib/browser/vsx-language-quick-pick-service.js.map +1 -1
- package/lib/browser/vsx-registry-frontend-module.js +1 -1
- package/lib/browser/vsx-registry-frontend-module.js.map +1 -1
- package/lib/common/ovsx-client-provider.js +1 -1
- package/lib/common/ovsx-client-provider.js.map +1 -1
- package/lib/common/vsx-environment.js +1 -1
- package/lib/common/vsx-environment.js.map +1 -1
- package/lib/common/vsx-extension-uri.js +1 -1
- package/lib/common/vsx-extension-uri.js.map +1 -1
- package/lib/node/vsx-environment-impl.js +1 -1
- package/lib/node/vsx-environment-impl.js.map +1 -1
- package/lib/node/vsx-extension-resolver.js +1 -1
- package/lib/node/vsx-extension-resolver.js.map +1 -1
- package/lib/node/vsx-registry-backend-module.js +1 -1
- package/lib/node/vsx-registry-backend-module.js.map +1 -1
- package/lib/package.spec.js +1 -1
- package/lib/package.spec.js.map +1 -1
- package/package.json +10 -10
- package/src/browser/recommended-extensions/preference-provider-overrides.ts +1 -1
- package/src/browser/recommended-extensions/recommended-extensions-json-schema.ts +1 -1
- package/src/browser/recommended-extensions/recommended-extensions-preference-contribution.ts +1 -1
- package/src/browser/style/index.css +172 -154
- package/src/browser/vsx-extension-commands.ts +1 -1
- package/src/browser/vsx-extension-editor-manager.ts +1 -1
- package/src/browser/vsx-extension-editor.tsx +1 -1
- package/src/browser/vsx-extension.tsx +1 -1
- package/src/browser/vsx-extensions-contribution.ts +1 -1
- package/src/browser/vsx-extensions-model.ts +1 -1
- package/src/browser/vsx-extensions-search-bar.tsx +1 -1
- package/src/browser/vsx-extensions-search-model.ts +1 -1
- package/src/browser/vsx-extensions-source.ts +1 -1
- package/src/browser/vsx-extensions-view-container.ts +1 -1
- package/src/browser/vsx-extensions-widget.tsx +1 -1
- package/src/browser/vsx-language-quick-pick-service.ts +1 -1
- package/src/browser/vsx-registry-frontend-module.ts +1 -1
- package/src/common/ovsx-client-provider.ts +1 -1
- package/src/common/vsx-environment.ts +1 -1
- package/src/common/vsx-extension-uri.ts +1 -1
- package/src/node/vsx-environment-impl.ts +1 -1
- package/src/node/vsx-extension-resolver.ts +1 -1
- package/src/node/vsx-registry-backend-module.ts +1 -1
- package/src/package.spec.ts +1 -1
|
@@ -11,344 +11,362 @@
|
|
|
11
11
|
* with the GNU Classpath Exception which is available at
|
|
12
12
|
* https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
*
|
|
14
|
-
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
********************************************************************************/
|
|
16
16
|
|
|
17
17
|
:root {
|
|
18
|
-
--theia-vsx-extension-icon-size: calc(var(--theia-ui-icon-font-size)*3);
|
|
19
|
-
--theia-vsx-extension-editor-icon-size: calc(
|
|
18
|
+
--theia-vsx-extension-icon-size: calc(var(--theia-ui-icon-font-size) * 3);
|
|
19
|
+
--theia-vsx-extension-editor-icon-size: calc(
|
|
20
|
+
var(--theia-vsx-extension-icon-size) * 3
|
|
21
|
+
);
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
.theia-vsx-extensions {
|
|
23
|
-
|
|
25
|
+
height: 100%;
|
|
24
26
|
}
|
|
25
27
|
|
|
26
28
|
.theia-vsx-extension,
|
|
27
29
|
.theia-vsx-extensions-view-container .part > .body {
|
|
28
|
-
|
|
30
|
+
min-height: calc(var(--theia-content-line-height) * 3);
|
|
29
31
|
}
|
|
30
32
|
|
|
31
33
|
.theia-vsx-extensions-search-bar {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
padding: var(--theia-ui-padding) var(--theia-scrollbar-width)
|
|
35
|
+
var(--theia-ui-padding) 18px
|
|
36
|
+
/* expansion toggle padding of tree elements in result list */;
|
|
37
|
+
display: flex;
|
|
38
|
+
align-content: center;
|
|
35
39
|
}
|
|
36
40
|
|
|
37
41
|
.theia-vsx-extensions-search-bar .theia-input {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
+
line-height: var(--theia-content-line-height);
|
|
43
|
+
flex: 1;
|
|
44
|
+
padding-top: calc(var(--theia-ui-padding) / 2);
|
|
45
|
+
padding-bottom: calc(var(--theia-ui-padding) / 2);
|
|
42
46
|
}
|
|
43
47
|
|
|
44
48
|
.theia-vsx-extension {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
+
display: flex;
|
|
50
|
+
flex-direction: row;
|
|
51
|
+
line-height: calc(var(--theia-content-line-height) * 17 / 22);
|
|
52
|
+
align-items: center;
|
|
49
53
|
}
|
|
50
54
|
|
|
51
55
|
.theia-vsx-extension-icon {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
height: var(--theia-vsx-extension-icon-size);
|
|
57
|
+
width: var(--theia-vsx-extension-icon-size);
|
|
58
|
+
align-self: center;
|
|
59
|
+
padding-right: calc(var(--theia-ui-padding) * 2.5);
|
|
60
|
+
flex-shrink: 0;
|
|
61
|
+
object-fit: contain;
|
|
58
62
|
}
|
|
59
63
|
|
|
60
64
|
.theia-vsx-extension-icon.placeholder {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
65
|
+
background-size: var(--theia-vsx-extension-icon-size);
|
|
66
|
+
background-repeat: no-repeat;
|
|
67
|
+
background-image: url("defaultIcon.png");
|
|
64
68
|
}
|
|
65
69
|
|
|
66
70
|
.theia-vsx-extension-content {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
71
|
+
display: flex;
|
|
72
|
+
flex-direction: column;
|
|
73
|
+
width: calc(
|
|
74
|
+
100% - var(--theia-vsx-extension-icon-size) - var(--theia-ui-padding) * 2.5
|
|
75
|
+
);
|
|
70
76
|
}
|
|
71
77
|
|
|
72
78
|
.theia-vsx-extension-content .title {
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
79
|
+
display: flex;
|
|
80
|
+
flex-direction: row;
|
|
81
|
+
justify-content: space-between;
|
|
82
|
+
align-items: center;
|
|
83
|
+
white-space: nowrap;
|
|
78
84
|
}
|
|
79
85
|
|
|
80
86
|
.theia-vsx-extension-content .title .name {
|
|
81
|
-
|
|
87
|
+
font-weight: bold;
|
|
82
88
|
}
|
|
83
89
|
|
|
84
90
|
.theia-vsx-extension-content .title .version,
|
|
85
91
|
.theia-vsx-extension-content .title .stat {
|
|
86
|
-
|
|
87
|
-
|
|
92
|
+
opacity: 0.85;
|
|
93
|
+
font-size: 80%;
|
|
88
94
|
}
|
|
89
95
|
|
|
90
96
|
.theia-vsx-extension-content .title .stat .codicon {
|
|
91
|
-
|
|
97
|
+
font-size: 110%;
|
|
92
98
|
}
|
|
93
99
|
|
|
94
100
|
.theia-vsx-extension-content .title .stat .download-count,
|
|
95
101
|
.theia-vsx-extension-content .title .stat .average-rating {
|
|
96
|
-
|
|
97
|
-
|
|
102
|
+
display: inline-flex;
|
|
103
|
+
align-items: center;
|
|
98
104
|
}
|
|
99
105
|
|
|
100
106
|
.theia-vsx-extension-content .title .stat .average-rating > i {
|
|
101
|
-
|
|
107
|
+
color: #ff8e00;
|
|
102
108
|
}
|
|
103
109
|
|
|
104
110
|
.theia-vsx-extension-editor .download-count > i,
|
|
105
111
|
.theia-vsx-extension-content .title .stat .average-rating > i,
|
|
106
112
|
.theia-vsx-extension-content .title .stat .download-count > i {
|
|
107
|
-
|
|
113
|
+
padding-right: calc(var(--theia-ui-padding) / 2);
|
|
108
114
|
}
|
|
109
115
|
|
|
110
116
|
.theia-vsx-extension-content .title .stat .average-rating,
|
|
111
117
|
.theia-vsx-extension-content .title .stat .download-count {
|
|
112
|
-
|
|
118
|
+
padding-left: var(--theia-ui-padding);
|
|
113
119
|
}
|
|
114
120
|
|
|
115
121
|
.theia-vsx-extension-description {
|
|
116
|
-
|
|
122
|
+
padding-right: calc(var(--theia-ui-padding) * 2);
|
|
117
123
|
}
|
|
118
124
|
|
|
119
125
|
.theia-vsx-extension-publisher {
|
|
120
|
-
|
|
121
|
-
|
|
126
|
+
font-weight: 600;
|
|
127
|
+
font-size: 90%;
|
|
122
128
|
}
|
|
123
129
|
|
|
124
130
|
.theia-vsx-extension-action-bar {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
131
|
+
display: flex;
|
|
132
|
+
flex-direction: row;
|
|
133
|
+
justify-content: space-between;
|
|
134
|
+
align-items: center;
|
|
135
|
+
white-space: nowrap;
|
|
130
136
|
}
|
|
131
137
|
|
|
132
138
|
.theia-vsx-extension-action-bar .action {
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
139
|
+
font-size: 90%;
|
|
140
|
+
min-width: auto !important;
|
|
141
|
+
padding: 2px var(--theia-ui-padding) !important;
|
|
142
|
+
margin-top: 2px;
|
|
143
|
+
vertical-align: middle;
|
|
138
144
|
}
|
|
139
145
|
|
|
140
146
|
/* Editor Section */
|
|
141
147
|
|
|
142
148
|
.theia-vsx-extension-editor {
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
+
height: 100%;
|
|
150
|
+
overflow: hidden;
|
|
151
|
+
display: flex;
|
|
152
|
+
flex-direction: column;
|
|
153
|
+
padding-top: 0;
|
|
154
|
+
position: relative;
|
|
149
155
|
}
|
|
150
156
|
|
|
151
157
|
.theia-vsx-extension-editor .header {
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
+
display: flex;
|
|
159
|
+
padding: calc(var(--theia-ui-padding) * 3) calc(var(--theia-ui-padding) * 3)
|
|
160
|
+
calc(var(--theia-ui-padding) * 3);
|
|
161
|
+
flex-shrink: 0;
|
|
162
|
+
border-bottom: 1px solid hsla(0, 0%, 50%, 0.5);
|
|
163
|
+
width: 100%;
|
|
164
|
+
background: var(--theia-editor-background);
|
|
158
165
|
}
|
|
159
166
|
|
|
160
167
|
.theia-vsx-extension-editor .scroll-container {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
168
|
+
position: relative;
|
|
169
|
+
padding-top: 0;
|
|
170
|
+
max-width: 100%;
|
|
171
|
+
width: 100%;
|
|
165
172
|
}
|
|
166
173
|
|
|
167
174
|
.theia-vsx-extension-editor .body {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
175
|
+
flex: 1;
|
|
176
|
+
padding: calc(var(--theia-ui-padding) * 2);
|
|
177
|
+
padding-top: 0;
|
|
178
|
+
max-width: 1000px;
|
|
179
|
+
margin: 0 auto;
|
|
180
|
+
line-height: 22px;
|
|
174
181
|
}
|
|
175
182
|
|
|
176
183
|
.theia-vsx-extension-editor .body h1 {
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
184
|
+
padding-bottom: var(--theia-ui-padding);
|
|
185
|
+
border-bottom: 1px solid hsla(0, 0%, 50%, 0.5);
|
|
186
|
+
margin-top: calc(var(--theia-ui-padding) * 5);
|
|
180
187
|
}
|
|
181
188
|
|
|
182
189
|
.theia-vsx-extension-editor .body a {
|
|
183
|
-
|
|
190
|
+
text-decoration: none;
|
|
184
191
|
}
|
|
185
192
|
|
|
186
193
|
.theia-vsx-extension-editor .body a:hover {
|
|
187
|
-
|
|
194
|
+
text-decoration: underline;
|
|
188
195
|
}
|
|
189
196
|
|
|
190
197
|
.theia-vsx-extension-editor .body table {
|
|
191
|
-
|
|
198
|
+
border-collapse: collapse;
|
|
192
199
|
}
|
|
193
200
|
|
|
194
201
|
.theia-vsx-extension-editor .body table > thead > tr > th {
|
|
195
|
-
|
|
196
|
-
|
|
202
|
+
text-align: left;
|
|
203
|
+
border-bottom: 1px solid var(--theia-extensionEditor-tableHeadBorder);
|
|
197
204
|
}
|
|
198
205
|
|
|
199
206
|
.theia-vsx-extension-editor .body table > thead > tr > th,
|
|
200
207
|
.theia-vsx-extension-editor .body table > thead > tr > td,
|
|
201
208
|
.theia-vsx-extension-editor .body table > tbody > tr > th,
|
|
202
209
|
.theia-vsx-extension-editor .body table > tbody > tr > td {
|
|
203
|
-
|
|
210
|
+
padding: 5px 10px;
|
|
204
211
|
}
|
|
205
212
|
|
|
206
213
|
.theia-vsx-extension-editor .body table > tbody > tr + tr > td {
|
|
207
|
-
|
|
214
|
+
border-top: 1px solid var(--theia-extensionEditor-tableCellBorder);
|
|
208
215
|
}
|
|
209
216
|
|
|
210
217
|
.theia-vsx-extension-editor .scroll-container .body pre {
|
|
211
|
-
|
|
218
|
+
white-space: normal;
|
|
212
219
|
}
|
|
213
220
|
|
|
214
221
|
.theia-vsx-extension-editor .body img {
|
|
215
|
-
|
|
222
|
+
max-width: 100%;
|
|
216
223
|
}
|
|
217
224
|
|
|
218
225
|
.theia-vsx-extension-editor .header .icon-container {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
226
|
+
height: var(--theia-vsx-extension-editor-icon-size);
|
|
227
|
+
width: var(--theia-vsx-extension-editor-icon-size);
|
|
228
|
+
align-self: center;
|
|
229
|
+
padding-right: calc(var(--theia-ui-padding) * 2.5);
|
|
230
|
+
flex-shrink: 0;
|
|
231
|
+
object-fit: contain;
|
|
225
232
|
}
|
|
226
233
|
|
|
227
234
|
.theia-vsx-extension-editor .header .icon-container.placeholder {
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
235
|
+
background-size: var(--theia-vsx-extension-editor-icon-size);
|
|
236
|
+
background-repeat: no-repeat;
|
|
237
|
+
background-image: url("defaultIcon.png");
|
|
231
238
|
}
|
|
232
239
|
|
|
233
240
|
.theia-vsx-extension-editor .header .details {
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
241
|
+
overflow: hidden;
|
|
242
|
+
user-select: text;
|
|
243
|
+
-webkit-user-select: text;
|
|
237
244
|
}
|
|
238
245
|
|
|
239
246
|
.theia-vsx-extension-editor .header .details .title,
|
|
240
247
|
.theia-vsx-extension-editor .header .details .subtitle {
|
|
241
|
-
|
|
242
|
-
|
|
248
|
+
display: flex;
|
|
249
|
+
align-items: center;
|
|
243
250
|
}
|
|
244
251
|
|
|
245
252
|
.theia-vsx-extension-editor .header .details .title .name {
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
253
|
+
flex: 0;
|
|
254
|
+
font-size: calc(var(--theia-ui-font-size1) * 2);
|
|
255
|
+
font-weight: 600;
|
|
256
|
+
white-space: nowrap;
|
|
257
|
+
cursor: pointer;
|
|
251
258
|
}
|
|
252
259
|
|
|
253
260
|
.theia-vsx-extension-editor .header .details .title .identifier {
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
261
|
+
margin-left: calc(var(--theia-ui-padding) * 5 / 3);
|
|
262
|
+
opacity: 0.6;
|
|
263
|
+
background: hsla(0, 0%, 68%, 0.31);
|
|
264
|
+
user-select: text;
|
|
265
|
+
-webkit-user-select: text;
|
|
266
|
+
white-space: nowrap;
|
|
260
267
|
}
|
|
261
268
|
|
|
262
269
|
.theia-vsx-extension-editor .header .details .title .preview {
|
|
263
|
-
|
|
270
|
+
background: #d63f26;
|
|
264
271
|
}
|
|
265
272
|
|
|
266
273
|
.vs .theia-vsx-extension-editor .header .details .title .preview {
|
|
267
|
-
|
|
274
|
+
color: white;
|
|
268
275
|
}
|
|
269
276
|
|
|
270
277
|
.theia-vsx-extension-editor .header .details .title .identifier,
|
|
271
278
|
.theia-vsx-extension-editor .header .details .title .preview,
|
|
272
279
|
.theia-vsx-extension-editor .header .details .title .builtin {
|
|
273
|
-
|
|
280
|
+
line-height: var(--theia-code-line-height);
|
|
274
281
|
}
|
|
275
282
|
|
|
276
283
|
.theia-vsx-extension-editor .header .details .title .identifier,
|
|
277
284
|
.theia-vsx-extension-editor .header .details .title .preview {
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
285
|
+
padding: calc(var(--theia-ui-padding) * 2 / 3);
|
|
286
|
+
padding-top: 0px;
|
|
287
|
+
padding-bottom: 0px;
|
|
288
|
+
border-radius: calc(var(--theia-ui-padding) * 2 / 3);
|
|
282
289
|
}
|
|
283
290
|
|
|
284
|
-
|
|
285
291
|
.theia-vsx-extension-editor .header .details .title .preview,
|
|
286
292
|
.theia-vsx-extension-editor .header .details .title .builtin {
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
293
|
+
font-size: var(--theia-ui-font-size0);
|
|
294
|
+
font-style: italic;
|
|
295
|
+
margin-left: calc(var(--theia-ui-padding) * 5 / 3);
|
|
290
296
|
}
|
|
291
297
|
|
|
292
298
|
.theia-vsx-extension-editor .header .details .subtitle {
|
|
293
|
-
|
|
294
|
-
|
|
299
|
+
padding-top: var(--theia-ui-padding);
|
|
300
|
+
white-space: nowrap;
|
|
295
301
|
}
|
|
296
302
|
|
|
297
303
|
.theia-vsx-extension-editor .header .details .subtitle > span {
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
304
|
+
display: flex;
|
|
305
|
+
align-items: center;
|
|
306
|
+
cursor: pointer;
|
|
307
|
+
line-height: var(--theia-content-line-height);
|
|
308
|
+
height: var(--theia-content-line-height);
|
|
303
309
|
}
|
|
304
310
|
|
|
305
|
-
.theia-vsx-extension-editor
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
311
|
+
.theia-vsx-extension-editor
|
|
312
|
+
.header
|
|
313
|
+
.details
|
|
314
|
+
.subtitle
|
|
315
|
+
> span:not(:first-child):not(:empty) {
|
|
316
|
+
border-left: 1px solid hsla(0, 0%, 50%, 0.7);
|
|
317
|
+
padding-left: calc(var(--theia-ui-padding) * 2);
|
|
318
|
+
margin-left: calc(var(--theia-ui-padding) * 2);
|
|
319
|
+
font-weight: 500;
|
|
310
320
|
}
|
|
311
321
|
|
|
312
322
|
.theia-vsx-extension-editor .header .details .subtitle .publisher {
|
|
313
|
-
|
|
323
|
+
font-size: var(--theia-ui-font-size3);
|
|
314
324
|
}
|
|
315
325
|
|
|
316
|
-
.theia-vsx-extension-editor
|
|
326
|
+
.theia-vsx-extension-editor
|
|
327
|
+
.header
|
|
328
|
+
.details
|
|
329
|
+
.subtitle
|
|
330
|
+
.publisher
|
|
331
|
+
.namespace-access,
|
|
317
332
|
.theia-vsx-extension-editor .header .details .subtitle .download-count::before {
|
|
318
|
-
|
|
333
|
+
padding-right: var(--theia-ui-padding);
|
|
319
334
|
}
|
|
320
335
|
|
|
321
336
|
.theia-vsx-extension-editor .header .details .subtitle .average-rating > i {
|
|
322
|
-
|
|
337
|
+
color: #ff8e00;
|
|
323
338
|
}
|
|
324
339
|
|
|
325
|
-
.theia-vsx-extension-editor
|
|
326
|
-
|
|
340
|
+
.theia-vsx-extension-editor
|
|
341
|
+
.header
|
|
342
|
+
.details
|
|
343
|
+
.subtitle
|
|
344
|
+
.average-rating
|
|
345
|
+
> i:not(:first-child) {
|
|
346
|
+
padding-left: calc(var(--theia-ui-padding) / 2);
|
|
327
347
|
}
|
|
328
348
|
|
|
329
|
-
|
|
330
349
|
.theia-vsx-extension-editor .header .details .description {
|
|
331
|
-
|
|
350
|
+
margin-top: calc(var(--theia-ui-padding) * 5 / 3);
|
|
332
351
|
}
|
|
333
352
|
|
|
334
353
|
.theia-vsx-extension-editor .action {
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
354
|
+
font-weight: 600;
|
|
355
|
+
margin-top: calc(var(--theia-ui-padding) * 5 / 3);
|
|
356
|
+
margin-left: 0px;
|
|
357
|
+
padding: 1px var(--theia-ui-padding);
|
|
358
|
+
vertical-align: middle;
|
|
340
359
|
}
|
|
341
360
|
|
|
342
361
|
/** Theming */
|
|
343
362
|
|
|
344
363
|
.theia-vsx-extension-editor .action.prominent,
|
|
345
364
|
.theia-vsx-extension-action-bar .action.prominent {
|
|
346
|
-
|
|
347
|
-
|
|
365
|
+
color: var(--theia-extensionButton-prominentForeground);
|
|
366
|
+
background-color: var(--theia-extensionButton-prominentBackground);
|
|
348
367
|
}
|
|
349
368
|
|
|
350
369
|
.theia-vsx-extension-editor .action.prominent:hover,
|
|
351
370
|
.theia-vsx-extension-action-bar .action.prominent:hover {
|
|
352
|
-
|
|
371
|
+
background-color: var(--theia-extensionButton-prominentHoverBackground);
|
|
353
372
|
}
|
|
354
|
-
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import { nls } from '@theia/core/lib/common/nls';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import { injectable } from '@theia/core/shared/inversify';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import * as React from '@theia/core/shared/react';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import * as React from '@theia/core/shared/react';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import { DateTime } from 'luxon';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import { injectable, inject, postConstruct } from '@theia/core/shared/inversify';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import * as React from '@theia/core/shared/react';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import { injectable } from '@theia/core/shared/inversify';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import { injectable, inject, postConstruct } from '@theia/core/shared/inversify';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* with the GNU Classpath Exception which is available at
|
|
12
12
|
* https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
*
|
|
14
|
-
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
*******************************************************************************‚*/
|
|
16
16
|
|
|
17
17
|
import { injectable, inject, postConstruct } from '@theia/core/shared/inversify';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import { injectable, interfaces, postConstruct, inject } from '@theia/core/shared/inversify';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import { LanguageQuickPickItem, LanguageQuickPickService } from '@theia/core/lib/browser/i18n/language-quick-pick-service';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import '../../src/browser/style/index.css';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import { RequestService } from '@theia/core/shared/@theia/request';
|