@theia/vsx-registry 1.39.0-next.2 → 1.39.0-next.20
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 +173 -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,363 @@
|
|
|
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
|
+
overflow: hidden;
|
|
43
|
+
line-height: var(--theia-content-line-height);
|
|
44
|
+
flex: 1;
|
|
45
|
+
padding-top: calc(var(--theia-ui-padding) / 2);
|
|
46
|
+
padding-bottom: calc(var(--theia-ui-padding) / 2);
|
|
42
47
|
}
|
|
43
48
|
|
|
44
49
|
.theia-vsx-extension {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
50
|
+
display: flex;
|
|
51
|
+
flex-direction: row;
|
|
52
|
+
line-height: calc(var(--theia-content-line-height) * 17 / 22);
|
|
53
|
+
align-items: center;
|
|
49
54
|
}
|
|
50
55
|
|
|
51
56
|
.theia-vsx-extension-icon {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
57
|
+
height: var(--theia-vsx-extension-icon-size);
|
|
58
|
+
width: var(--theia-vsx-extension-icon-size);
|
|
59
|
+
align-self: center;
|
|
60
|
+
padding-right: calc(var(--theia-ui-padding) * 2.5);
|
|
61
|
+
flex-shrink: 0;
|
|
62
|
+
object-fit: contain;
|
|
58
63
|
}
|
|
59
64
|
|
|
60
65
|
.theia-vsx-extension-icon.placeholder {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
66
|
+
background-size: var(--theia-vsx-extension-icon-size);
|
|
67
|
+
background-repeat: no-repeat;
|
|
68
|
+
background-image: url("defaultIcon.png");
|
|
64
69
|
}
|
|
65
70
|
|
|
66
71
|
.theia-vsx-extension-content {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
72
|
+
display: flex;
|
|
73
|
+
flex-direction: column;
|
|
74
|
+
width: calc(
|
|
75
|
+
100% - var(--theia-vsx-extension-icon-size) - var(--theia-ui-padding) * 2.5
|
|
76
|
+
);
|
|
70
77
|
}
|
|
71
78
|
|
|
72
79
|
.theia-vsx-extension-content .title {
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
80
|
+
display: flex;
|
|
81
|
+
flex-direction: row;
|
|
82
|
+
justify-content: space-between;
|
|
83
|
+
align-items: center;
|
|
84
|
+
white-space: nowrap;
|
|
78
85
|
}
|
|
79
86
|
|
|
80
87
|
.theia-vsx-extension-content .title .name {
|
|
81
|
-
|
|
88
|
+
font-weight: bold;
|
|
82
89
|
}
|
|
83
90
|
|
|
84
91
|
.theia-vsx-extension-content .title .version,
|
|
85
92
|
.theia-vsx-extension-content .title .stat {
|
|
86
|
-
|
|
87
|
-
|
|
93
|
+
opacity: 0.85;
|
|
94
|
+
font-size: 80%;
|
|
88
95
|
}
|
|
89
96
|
|
|
90
97
|
.theia-vsx-extension-content .title .stat .codicon {
|
|
91
|
-
|
|
98
|
+
font-size: 110%;
|
|
92
99
|
}
|
|
93
100
|
|
|
94
101
|
.theia-vsx-extension-content .title .stat .download-count,
|
|
95
102
|
.theia-vsx-extension-content .title .stat .average-rating {
|
|
96
|
-
|
|
97
|
-
|
|
103
|
+
display: inline-flex;
|
|
104
|
+
align-items: center;
|
|
98
105
|
}
|
|
99
106
|
|
|
100
107
|
.theia-vsx-extension-content .title .stat .average-rating > i {
|
|
101
|
-
|
|
108
|
+
color: #ff8e00;
|
|
102
109
|
}
|
|
103
110
|
|
|
104
111
|
.theia-vsx-extension-editor .download-count > i,
|
|
105
112
|
.theia-vsx-extension-content .title .stat .average-rating > i,
|
|
106
113
|
.theia-vsx-extension-content .title .stat .download-count > i {
|
|
107
|
-
|
|
114
|
+
padding-right: calc(var(--theia-ui-padding) / 2);
|
|
108
115
|
}
|
|
109
116
|
|
|
110
117
|
.theia-vsx-extension-content .title .stat .average-rating,
|
|
111
118
|
.theia-vsx-extension-content .title .stat .download-count {
|
|
112
|
-
|
|
119
|
+
padding-left: var(--theia-ui-padding);
|
|
113
120
|
}
|
|
114
121
|
|
|
115
122
|
.theia-vsx-extension-description {
|
|
116
|
-
|
|
123
|
+
padding-right: calc(var(--theia-ui-padding) * 2);
|
|
117
124
|
}
|
|
118
125
|
|
|
119
126
|
.theia-vsx-extension-publisher {
|
|
120
|
-
|
|
121
|
-
|
|
127
|
+
font-weight: 600;
|
|
128
|
+
font-size: 90%;
|
|
122
129
|
}
|
|
123
130
|
|
|
124
131
|
.theia-vsx-extension-action-bar {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
132
|
+
display: flex;
|
|
133
|
+
flex-direction: row;
|
|
134
|
+
justify-content: space-between;
|
|
135
|
+
align-items: center;
|
|
136
|
+
white-space: nowrap;
|
|
130
137
|
}
|
|
131
138
|
|
|
132
139
|
.theia-vsx-extension-action-bar .action {
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
140
|
+
font-size: 90%;
|
|
141
|
+
min-width: auto !important;
|
|
142
|
+
padding: 2px var(--theia-ui-padding) !important;
|
|
143
|
+
margin-top: 2px;
|
|
144
|
+
vertical-align: middle;
|
|
138
145
|
}
|
|
139
146
|
|
|
140
147
|
/* Editor Section */
|
|
141
148
|
|
|
142
149
|
.theia-vsx-extension-editor {
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
150
|
+
height: 100%;
|
|
151
|
+
overflow: hidden;
|
|
152
|
+
display: flex;
|
|
153
|
+
flex-direction: column;
|
|
154
|
+
padding-top: 0;
|
|
155
|
+
position: relative;
|
|
149
156
|
}
|
|
150
157
|
|
|
151
158
|
.theia-vsx-extension-editor .header {
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
159
|
+
display: flex;
|
|
160
|
+
padding: calc(var(--theia-ui-padding) * 3) calc(var(--theia-ui-padding) * 3)
|
|
161
|
+
calc(var(--theia-ui-padding) * 3);
|
|
162
|
+
flex-shrink: 0;
|
|
163
|
+
border-bottom: 1px solid hsla(0, 0%, 50%, 0.5);
|
|
164
|
+
width: 100%;
|
|
165
|
+
background: var(--theia-editor-background);
|
|
158
166
|
}
|
|
159
167
|
|
|
160
168
|
.theia-vsx-extension-editor .scroll-container {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
169
|
+
position: relative;
|
|
170
|
+
padding-top: 0;
|
|
171
|
+
max-width: 100%;
|
|
172
|
+
width: 100%;
|
|
165
173
|
}
|
|
166
174
|
|
|
167
175
|
.theia-vsx-extension-editor .body {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
176
|
+
flex: 1;
|
|
177
|
+
padding: calc(var(--theia-ui-padding) * 2);
|
|
178
|
+
padding-top: 0;
|
|
179
|
+
max-width: 1000px;
|
|
180
|
+
margin: 0 auto;
|
|
181
|
+
line-height: 22px;
|
|
174
182
|
}
|
|
175
183
|
|
|
176
184
|
.theia-vsx-extension-editor .body h1 {
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
185
|
+
padding-bottom: var(--theia-ui-padding);
|
|
186
|
+
border-bottom: 1px solid hsla(0, 0%, 50%, 0.5);
|
|
187
|
+
margin-top: calc(var(--theia-ui-padding) * 5);
|
|
180
188
|
}
|
|
181
189
|
|
|
182
190
|
.theia-vsx-extension-editor .body a {
|
|
183
|
-
|
|
191
|
+
text-decoration: none;
|
|
184
192
|
}
|
|
185
193
|
|
|
186
194
|
.theia-vsx-extension-editor .body a:hover {
|
|
187
|
-
|
|
195
|
+
text-decoration: underline;
|
|
188
196
|
}
|
|
189
197
|
|
|
190
198
|
.theia-vsx-extension-editor .body table {
|
|
191
|
-
|
|
199
|
+
border-collapse: collapse;
|
|
192
200
|
}
|
|
193
201
|
|
|
194
202
|
.theia-vsx-extension-editor .body table > thead > tr > th {
|
|
195
|
-
|
|
196
|
-
|
|
203
|
+
text-align: left;
|
|
204
|
+
border-bottom: 1px solid var(--theia-extensionEditor-tableHeadBorder);
|
|
197
205
|
}
|
|
198
206
|
|
|
199
207
|
.theia-vsx-extension-editor .body table > thead > tr > th,
|
|
200
208
|
.theia-vsx-extension-editor .body table > thead > tr > td,
|
|
201
209
|
.theia-vsx-extension-editor .body table > tbody > tr > th,
|
|
202
210
|
.theia-vsx-extension-editor .body table > tbody > tr > td {
|
|
203
|
-
|
|
211
|
+
padding: 5px 10px;
|
|
204
212
|
}
|
|
205
213
|
|
|
206
214
|
.theia-vsx-extension-editor .body table > tbody > tr + tr > td {
|
|
207
|
-
|
|
215
|
+
border-top: 1px solid var(--theia-extensionEditor-tableCellBorder);
|
|
208
216
|
}
|
|
209
217
|
|
|
210
218
|
.theia-vsx-extension-editor .scroll-container .body pre {
|
|
211
|
-
|
|
219
|
+
white-space: normal;
|
|
212
220
|
}
|
|
213
221
|
|
|
214
222
|
.theia-vsx-extension-editor .body img {
|
|
215
|
-
|
|
223
|
+
max-width: 100%;
|
|
216
224
|
}
|
|
217
225
|
|
|
218
226
|
.theia-vsx-extension-editor .header .icon-container {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
227
|
+
height: var(--theia-vsx-extension-editor-icon-size);
|
|
228
|
+
width: var(--theia-vsx-extension-editor-icon-size);
|
|
229
|
+
align-self: center;
|
|
230
|
+
padding-right: calc(var(--theia-ui-padding) * 2.5);
|
|
231
|
+
flex-shrink: 0;
|
|
232
|
+
object-fit: contain;
|
|
225
233
|
}
|
|
226
234
|
|
|
227
235
|
.theia-vsx-extension-editor .header .icon-container.placeholder {
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
236
|
+
background-size: var(--theia-vsx-extension-editor-icon-size);
|
|
237
|
+
background-repeat: no-repeat;
|
|
238
|
+
background-image: url("defaultIcon.png");
|
|
231
239
|
}
|
|
232
240
|
|
|
233
241
|
.theia-vsx-extension-editor .header .details {
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
242
|
+
overflow: hidden;
|
|
243
|
+
user-select: text;
|
|
244
|
+
-webkit-user-select: text;
|
|
237
245
|
}
|
|
238
246
|
|
|
239
247
|
.theia-vsx-extension-editor .header .details .title,
|
|
240
248
|
.theia-vsx-extension-editor .header .details .subtitle {
|
|
241
|
-
|
|
242
|
-
|
|
249
|
+
display: flex;
|
|
250
|
+
align-items: center;
|
|
243
251
|
}
|
|
244
252
|
|
|
245
253
|
.theia-vsx-extension-editor .header .details .title .name {
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
254
|
+
flex: 0;
|
|
255
|
+
font-size: calc(var(--theia-ui-font-size1) * 2);
|
|
256
|
+
font-weight: 600;
|
|
257
|
+
white-space: nowrap;
|
|
258
|
+
cursor: pointer;
|
|
251
259
|
}
|
|
252
260
|
|
|
253
261
|
.theia-vsx-extension-editor .header .details .title .identifier {
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
262
|
+
margin-left: calc(var(--theia-ui-padding) * 5 / 3);
|
|
263
|
+
opacity: 0.6;
|
|
264
|
+
background: hsla(0, 0%, 68%, 0.31);
|
|
265
|
+
user-select: text;
|
|
266
|
+
-webkit-user-select: text;
|
|
267
|
+
white-space: nowrap;
|
|
260
268
|
}
|
|
261
269
|
|
|
262
270
|
.theia-vsx-extension-editor .header .details .title .preview {
|
|
263
|
-
|
|
271
|
+
background: #d63f26;
|
|
264
272
|
}
|
|
265
273
|
|
|
266
274
|
.vs .theia-vsx-extension-editor .header .details .title .preview {
|
|
267
|
-
|
|
275
|
+
color: white;
|
|
268
276
|
}
|
|
269
277
|
|
|
270
278
|
.theia-vsx-extension-editor .header .details .title .identifier,
|
|
271
279
|
.theia-vsx-extension-editor .header .details .title .preview,
|
|
272
280
|
.theia-vsx-extension-editor .header .details .title .builtin {
|
|
273
|
-
|
|
281
|
+
line-height: var(--theia-code-line-height);
|
|
274
282
|
}
|
|
275
283
|
|
|
276
284
|
.theia-vsx-extension-editor .header .details .title .identifier,
|
|
277
285
|
.theia-vsx-extension-editor .header .details .title .preview {
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
286
|
+
padding: calc(var(--theia-ui-padding) * 2 / 3);
|
|
287
|
+
padding-top: 0px;
|
|
288
|
+
padding-bottom: 0px;
|
|
289
|
+
border-radius: calc(var(--theia-ui-padding) * 2 / 3);
|
|
282
290
|
}
|
|
283
291
|
|
|
284
|
-
|
|
285
292
|
.theia-vsx-extension-editor .header .details .title .preview,
|
|
286
293
|
.theia-vsx-extension-editor .header .details .title .builtin {
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
294
|
+
font-size: var(--theia-ui-font-size0);
|
|
295
|
+
font-style: italic;
|
|
296
|
+
margin-left: calc(var(--theia-ui-padding) * 5 / 3);
|
|
290
297
|
}
|
|
291
298
|
|
|
292
299
|
.theia-vsx-extension-editor .header .details .subtitle {
|
|
293
|
-
|
|
294
|
-
|
|
300
|
+
padding-top: var(--theia-ui-padding);
|
|
301
|
+
white-space: nowrap;
|
|
295
302
|
}
|
|
296
303
|
|
|
297
304
|
.theia-vsx-extension-editor .header .details .subtitle > span {
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
305
|
+
display: flex;
|
|
306
|
+
align-items: center;
|
|
307
|
+
cursor: pointer;
|
|
308
|
+
line-height: var(--theia-content-line-height);
|
|
309
|
+
height: var(--theia-content-line-height);
|
|
303
310
|
}
|
|
304
311
|
|
|
305
|
-
.theia-vsx-extension-editor
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
312
|
+
.theia-vsx-extension-editor
|
|
313
|
+
.header
|
|
314
|
+
.details
|
|
315
|
+
.subtitle
|
|
316
|
+
> span:not(:first-child):not(:empty) {
|
|
317
|
+
border-left: 1px solid hsla(0, 0%, 50%, 0.7);
|
|
318
|
+
padding-left: calc(var(--theia-ui-padding) * 2);
|
|
319
|
+
margin-left: calc(var(--theia-ui-padding) * 2);
|
|
320
|
+
font-weight: 500;
|
|
310
321
|
}
|
|
311
322
|
|
|
312
323
|
.theia-vsx-extension-editor .header .details .subtitle .publisher {
|
|
313
|
-
|
|
324
|
+
font-size: var(--theia-ui-font-size3);
|
|
314
325
|
}
|
|
315
326
|
|
|
316
|
-
.theia-vsx-extension-editor
|
|
327
|
+
.theia-vsx-extension-editor
|
|
328
|
+
.header
|
|
329
|
+
.details
|
|
330
|
+
.subtitle
|
|
331
|
+
.publisher
|
|
332
|
+
.namespace-access,
|
|
317
333
|
.theia-vsx-extension-editor .header .details .subtitle .download-count::before {
|
|
318
|
-
|
|
334
|
+
padding-right: var(--theia-ui-padding);
|
|
319
335
|
}
|
|
320
336
|
|
|
321
337
|
.theia-vsx-extension-editor .header .details .subtitle .average-rating > i {
|
|
322
|
-
|
|
338
|
+
color: #ff8e00;
|
|
323
339
|
}
|
|
324
340
|
|
|
325
|
-
.theia-vsx-extension-editor
|
|
326
|
-
|
|
341
|
+
.theia-vsx-extension-editor
|
|
342
|
+
.header
|
|
343
|
+
.details
|
|
344
|
+
.subtitle
|
|
345
|
+
.average-rating
|
|
346
|
+
> i:not(:first-child) {
|
|
347
|
+
padding-left: calc(var(--theia-ui-padding) / 2);
|
|
327
348
|
}
|
|
328
349
|
|
|
329
|
-
|
|
330
350
|
.theia-vsx-extension-editor .header .details .description {
|
|
331
|
-
|
|
351
|
+
margin-top: calc(var(--theia-ui-padding) * 5 / 3);
|
|
332
352
|
}
|
|
333
353
|
|
|
334
354
|
.theia-vsx-extension-editor .action {
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
355
|
+
font-weight: 600;
|
|
356
|
+
margin-top: calc(var(--theia-ui-padding) * 5 / 3);
|
|
357
|
+
margin-left: 0px;
|
|
358
|
+
padding: 1px var(--theia-ui-padding);
|
|
359
|
+
vertical-align: middle;
|
|
340
360
|
}
|
|
341
361
|
|
|
342
362
|
/** Theming */
|
|
343
363
|
|
|
344
364
|
.theia-vsx-extension-editor .action.prominent,
|
|
345
365
|
.theia-vsx-extension-action-bar .action.prominent {
|
|
346
|
-
|
|
347
|
-
|
|
366
|
+
color: var(--theia-extensionButton-prominentForeground);
|
|
367
|
+
background-color: var(--theia-extensionButton-prominentBackground);
|
|
348
368
|
}
|
|
349
369
|
|
|
350
370
|
.theia-vsx-extension-editor .action.prominent:hover,
|
|
351
371
|
.theia-vsx-extension-action-bar .action.prominent:hover {
|
|
352
|
-
|
|
372
|
+
background-color: var(--theia-extensionButton-prominentHoverBackground);
|
|
353
373
|
}
|
|
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';
|