@public-ui/theme-bwst 2.2.6-rc.2

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 (36) hide show
  1. package/README.md +173 -0
  2. package/assets/README.md +1 -0
  3. package/assets/codicons/LICENSE +395 -0
  4. package/assets/codicons/LICENSE-CODE +21 -0
  5. package/assets/codicons/codicon.css +635 -0
  6. package/assets/codicons/codicon.csv +467 -0
  7. package/assets/codicons/codicon.html +4239 -0
  8. package/assets/codicons/codicon.svg +1 -0
  9. package/assets/codicons/codicon.ttf +0 -0
  10. package/assets/kolibri.ico +0 -0
  11. package/assets/noto-sans/fonts/NotoSans-Black.ttf +0 -0
  12. package/assets/noto-sans/fonts/NotoSans-BlackItalic.ttf +0 -0
  13. package/assets/noto-sans/fonts/NotoSans-Bold.ttf +0 -0
  14. package/assets/noto-sans/fonts/NotoSans-BoldItalic.ttf +0 -0
  15. package/assets/noto-sans/fonts/NotoSans-ExtraBold.ttf +0 -0
  16. package/assets/noto-sans/fonts/NotoSans-ExtraBoldItalic.ttf +0 -0
  17. package/assets/noto-sans/fonts/NotoSans-ExtraLight.ttf +0 -0
  18. package/assets/noto-sans/fonts/NotoSans-ExtraLightItalic.ttf +0 -0
  19. package/assets/noto-sans/fonts/NotoSans-Italic.ttf +0 -0
  20. package/assets/noto-sans/fonts/NotoSans-Light.ttf +0 -0
  21. package/assets/noto-sans/fonts/NotoSans-LightItalic.ttf +0 -0
  22. package/assets/noto-sans/fonts/NotoSans-Medium.ttf +0 -0
  23. package/assets/noto-sans/fonts/NotoSans-MediumItalic.ttf +0 -0
  24. package/assets/noto-sans/fonts/NotoSans-Regular.ttf +0 -0
  25. package/assets/noto-sans/fonts/NotoSans-SemiBold.ttf +0 -0
  26. package/assets/noto-sans/fonts/NotoSans-SemiBoldItalic.ttf +0 -0
  27. package/assets/noto-sans/fonts/NotoSans-Thin.ttf +0 -0
  28. package/assets/noto-sans/fonts/NotoSans-ThinItalic.ttf +0 -0
  29. package/assets/noto-sans/fonts/OFL.txt +93 -0
  30. package/assets/noto-sans/noto-sans.css +11 -0
  31. package/dist/index.cjs +605 -0
  32. package/dist/index.cjs.map +1 -0
  33. package/dist/index.d.ts +61 -0
  34. package/dist/index.mjs +603 -0
  35. package/dist/index.mjs.map +1 -0
  36. package/package.json +93 -0
@@ -0,0 +1,635 @@
1
+ /*---------------------------------------------------------------------------------------------
2
+ * Copyright (c) Microsoft Corporation. All rights reserved.
3
+ * Licensed under the MIT License. See License.txt in the project root for license information.
4
+ *--------------------------------------------------------------------------------------------*/
5
+
6
+ @font-face {
7
+ font-family: "codicon";
8
+ font-display: block;
9
+ src: url("./codicon.ttf?be64b7213e352cd7f91ef58198e71237") format("truetype");
10
+ }
11
+
12
+ .codicon[class*='codicon-'] {
13
+ font: normal normal normal 16px/1 codicon;
14
+ display: inline-block;
15
+ text-decoration: none;
16
+ text-rendering: auto;
17
+ text-align: center;
18
+ -webkit-font-smoothing: antialiased;
19
+ -moz-osx-font-smoothing: grayscale;
20
+ user-select: none;
21
+ -webkit-user-select: none;
22
+ -ms-user-select: none;
23
+ }
24
+
25
+ /*---------------------
26
+ * Modifiers
27
+ *-------------------*/
28
+
29
+ @keyframes codicon-spin {
30
+ 100% {
31
+ transform:rotate(360deg);
32
+ }
33
+ }
34
+
35
+ .codicon-sync.codicon-modifier-spin,
36
+ .codicon-loading.codicon-modifier-spin,
37
+ .codicon-gear.codicon-modifier-spin {
38
+ /* Use steps to throttle FPS to reduce CPU usage */
39
+ animation: codicon-spin 1.5s steps(30) infinite;
40
+ }
41
+
42
+ .codicon-modifier-disabled {
43
+ opacity: 0.5;
44
+ }
45
+
46
+ .codicon-modifier-hidden {
47
+ opacity: 0;
48
+ }
49
+
50
+ /* custom speed & easing for loading icon */
51
+ .codicon-loading {
52
+ animation-duration: 1s !important;
53
+ animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67) !important;
54
+ }
55
+
56
+ /*---------------------
57
+ * Icons
58
+ *-------------------*/
59
+
60
+ .codicon-add:before { content: "\ea60" }
61
+ .codicon-plus:before { content: "\ea60" }
62
+ .codicon-gist-new:before { content: "\ea60" }
63
+ .codicon-repo-create:before { content: "\ea60" }
64
+ .codicon-lightbulb:before { content: "\ea61" }
65
+ .codicon-light-bulb:before { content: "\ea61" }
66
+ .codicon-repo:before { content: "\ea62" }
67
+ .codicon-repo-delete:before { content: "\ea62" }
68
+ .codicon-gist-fork:before { content: "\ea63" }
69
+ .codicon-repo-forked:before { content: "\ea63" }
70
+ .codicon-git-pull-request:before { content: "\ea64" }
71
+ .codicon-git-pull-request-abandoned:before { content: "\ea64" }
72
+ .codicon-record-keys:before { content: "\ea65" }
73
+ .codicon-keyboard:before { content: "\ea65" }
74
+ .codicon-tag:before { content: "\ea66" }
75
+ .codicon-git-pull-request-label:before { content: "\ea66" }
76
+ .codicon-tag-add:before { content: "\ea66" }
77
+ .codicon-tag-remove:before { content: "\ea66" }
78
+ .codicon-person:before { content: "\ea67" }
79
+ .codicon-person-follow:before { content: "\ea67" }
80
+ .codicon-person-outline:before { content: "\ea67" }
81
+ .codicon-person-filled:before { content: "\ea67" }
82
+ .codicon-git-branch:before { content: "\ea68" }
83
+ .codicon-git-branch-create:before { content: "\ea68" }
84
+ .codicon-git-branch-delete:before { content: "\ea68" }
85
+ .codicon-source-control:before { content: "\ea68" }
86
+ .codicon-mirror:before { content: "\ea69" }
87
+ .codicon-mirror-public:before { content: "\ea69" }
88
+ .codicon-star:before { content: "\ea6a" }
89
+ .codicon-star-add:before { content: "\ea6a" }
90
+ .codicon-star-delete:before { content: "\ea6a" }
91
+ .codicon-star-empty:before { content: "\ea6a" }
92
+ .codicon-comment:before { content: "\ea6b" }
93
+ .codicon-comment-add:before { content: "\ea6b" }
94
+ .codicon-alert:before { content: "\ea6c" }
95
+ .codicon-warning:before { content: "\ea6c" }
96
+ .codicon-search:before { content: "\ea6d" }
97
+ .codicon-search-save:before { content: "\ea6d" }
98
+ .codicon-log-out:before { content: "\ea6e" }
99
+ .codicon-sign-out:before { content: "\ea6e" }
100
+ .codicon-log-in:before { content: "\ea6f" }
101
+ .codicon-sign-in:before { content: "\ea6f" }
102
+ .codicon-eye:before { content: "\ea70" }
103
+ .codicon-eye-unwatch:before { content: "\ea70" }
104
+ .codicon-eye-watch:before { content: "\ea70" }
105
+ .codicon-circle-filled:before { content: "\ea71" }
106
+ .codicon-primitive-dot:before { content: "\ea71" }
107
+ .codicon-close-dirty:before { content: "\ea71" }
108
+ .codicon-debug-breakpoint:before { content: "\ea71" }
109
+ .codicon-debug-breakpoint-disabled:before { content: "\ea71" }
110
+ .codicon-debug-hint:before { content: "\ea71" }
111
+ .codicon-terminal-decoration-success:before { content: "\ea71" }
112
+ .codicon-primitive-square:before { content: "\ea72" }
113
+ .codicon-edit:before { content: "\ea73" }
114
+ .codicon-pencil:before { content: "\ea73" }
115
+ .codicon-info:before { content: "\ea74" }
116
+ .codicon-issue-opened:before { content: "\ea74" }
117
+ .codicon-gist-private:before { content: "\ea75" }
118
+ .codicon-git-fork-private:before { content: "\ea75" }
119
+ .codicon-lock:before { content: "\ea75" }
120
+ .codicon-mirror-private:before { content: "\ea75" }
121
+ .codicon-close:before { content: "\ea76" }
122
+ .codicon-remove-close:before { content: "\ea76" }
123
+ .codicon-x:before { content: "\ea76" }
124
+ .codicon-repo-sync:before { content: "\ea77" }
125
+ .codicon-sync:before { content: "\ea77" }
126
+ .codicon-clone:before { content: "\ea78" }
127
+ .codicon-desktop-download:before { content: "\ea78" }
128
+ .codicon-beaker:before { content: "\ea79" }
129
+ .codicon-microscope:before { content: "\ea79" }
130
+ .codicon-vm:before { content: "\ea7a" }
131
+ .codicon-device-desktop:before { content: "\ea7a" }
132
+ .codicon-file:before { content: "\ea7b" }
133
+ .codicon-file-text:before { content: "\ea7b" }
134
+ .codicon-more:before { content: "\ea7c" }
135
+ .codicon-ellipsis:before { content: "\ea7c" }
136
+ .codicon-kebab-horizontal:before { content: "\ea7c" }
137
+ .codicon-mail-reply:before { content: "\ea7d" }
138
+ .codicon-reply:before { content: "\ea7d" }
139
+ .codicon-organization:before { content: "\ea7e" }
140
+ .codicon-organization-filled:before { content: "\ea7e" }
141
+ .codicon-organization-outline:before { content: "\ea7e" }
142
+ .codicon-new-file:before { content: "\ea7f" }
143
+ .codicon-file-add:before { content: "\ea7f" }
144
+ .codicon-new-folder:before { content: "\ea80" }
145
+ .codicon-file-directory-create:before { content: "\ea80" }
146
+ .codicon-trash:before { content: "\ea81" }
147
+ .codicon-trashcan:before { content: "\ea81" }
148
+ .codicon-history:before { content: "\ea82" }
149
+ .codicon-clock:before { content: "\ea82" }
150
+ .codicon-folder:before { content: "\ea83" }
151
+ .codicon-file-directory:before { content: "\ea83" }
152
+ .codicon-symbol-folder:before { content: "\ea83" }
153
+ .codicon-logo-github:before { content: "\ea84" }
154
+ .codicon-mark-github:before { content: "\ea84" }
155
+ .codicon-github:before { content: "\ea84" }
156
+ .codicon-terminal:before { content: "\ea85" }
157
+ .codicon-console:before { content: "\ea85" }
158
+ .codicon-repl:before { content: "\ea85" }
159
+ .codicon-zap:before { content: "\ea86" }
160
+ .codicon-symbol-event:before { content: "\ea86" }
161
+ .codicon-error:before { content: "\ea87" }
162
+ .codicon-stop:before { content: "\ea87" }
163
+ .codicon-variable:before { content: "\ea88" }
164
+ .codicon-symbol-variable:before { content: "\ea88" }
165
+ .codicon-array:before { content: "\ea8a" }
166
+ .codicon-symbol-array:before { content: "\ea8a" }
167
+ .codicon-symbol-module:before { content: "\ea8b" }
168
+ .codicon-symbol-package:before { content: "\ea8b" }
169
+ .codicon-symbol-namespace:before { content: "\ea8b" }
170
+ .codicon-symbol-object:before { content: "\ea8b" }
171
+ .codicon-symbol-method:before { content: "\ea8c" }
172
+ .codicon-symbol-function:before { content: "\ea8c" }
173
+ .codicon-symbol-constructor:before { content: "\ea8c" }
174
+ .codicon-symbol-boolean:before { content: "\ea8f" }
175
+ .codicon-symbol-null:before { content: "\ea8f" }
176
+ .codicon-symbol-numeric:before { content: "\ea90" }
177
+ .codicon-symbol-number:before { content: "\ea90" }
178
+ .codicon-symbol-structure:before { content: "\ea91" }
179
+ .codicon-symbol-struct:before { content: "\ea91" }
180
+ .codicon-symbol-parameter:before { content: "\ea92" }
181
+ .codicon-symbol-type-parameter:before { content: "\ea92" }
182
+ .codicon-symbol-key:before { content: "\ea93" }
183
+ .codicon-symbol-text:before { content: "\ea93" }
184
+ .codicon-symbol-reference:before { content: "\ea94" }
185
+ .codicon-go-to-file:before { content: "\ea94" }
186
+ .codicon-symbol-enum:before { content: "\ea95" }
187
+ .codicon-symbol-value:before { content: "\ea95" }
188
+ .codicon-symbol-ruler:before { content: "\ea96" }
189
+ .codicon-symbol-unit:before { content: "\ea96" }
190
+ .codicon-activate-breakpoints:before { content: "\ea97" }
191
+ .codicon-archive:before { content: "\ea98" }
192
+ .codicon-arrow-both:before { content: "\ea99" }
193
+ .codicon-arrow-down:before { content: "\ea9a" }
194
+ .codicon-arrow-left:before { content: "\ea9b" }
195
+ .codicon-arrow-right:before { content: "\ea9c" }
196
+ .codicon-arrow-small-down:before { content: "\ea9d" }
197
+ .codicon-arrow-small-left:before { content: "\ea9e" }
198
+ .codicon-arrow-small-right:before { content: "\ea9f" }
199
+ .codicon-arrow-small-up:before { content: "\eaa0" }
200
+ .codicon-arrow-up:before { content: "\eaa1" }
201
+ .codicon-bell:before { content: "\eaa2" }
202
+ .codicon-bold:before { content: "\eaa3" }
203
+ .codicon-book:before { content: "\eaa4" }
204
+ .codicon-bookmark:before { content: "\eaa5" }
205
+ .codicon-debug-breakpoint-conditional-unverified:before { content: "\eaa6" }
206
+ .codicon-debug-breakpoint-conditional:before { content: "\eaa7" }
207
+ .codicon-debug-breakpoint-conditional-disabled:before { content: "\eaa7" }
208
+ .codicon-debug-breakpoint-data-unverified:before { content: "\eaa8" }
209
+ .codicon-debug-breakpoint-data:before { content: "\eaa9" }
210
+ .codicon-debug-breakpoint-data-disabled:before { content: "\eaa9" }
211
+ .codicon-debug-breakpoint-log-unverified:before { content: "\eaaa" }
212
+ .codicon-debug-breakpoint-log:before { content: "\eaab" }
213
+ .codicon-debug-breakpoint-log-disabled:before { content: "\eaab" }
214
+ .codicon-briefcase:before { content: "\eaac" }
215
+ .codicon-broadcast:before { content: "\eaad" }
216
+ .codicon-browser:before { content: "\eaae" }
217
+ .codicon-bug:before { content: "\eaaf" }
218
+ .codicon-calendar:before { content: "\eab0" }
219
+ .codicon-case-sensitive:before { content: "\eab1" }
220
+ .codicon-check:before { content: "\eab2" }
221
+ .codicon-checklist:before { content: "\eab3" }
222
+ .codicon-chevron-down:before { content: "\eab4" }
223
+ .codicon-chevron-left:before { content: "\eab5" }
224
+ .codicon-chevron-right:before { content: "\eab6" }
225
+ .codicon-chevron-up:before { content: "\eab7" }
226
+ .codicon-chrome-close:before { content: "\eab8" }
227
+ .codicon-chrome-maximize:before { content: "\eab9" }
228
+ .codicon-chrome-minimize:before { content: "\eaba" }
229
+ .codicon-chrome-restore:before { content: "\eabb" }
230
+ .codicon-circle-outline:before { content: "\eabc" }
231
+ .codicon-circle:before { content: "\eabc" }
232
+ .codicon-debug-breakpoint-unverified:before { content: "\eabc" }
233
+ .codicon-terminal-decoration-incomplete:before { content: "\eabc" }
234
+ .codicon-circle-slash:before { content: "\eabd" }
235
+ .codicon-circuit-board:before { content: "\eabe" }
236
+ .codicon-clear-all:before { content: "\eabf" }
237
+ .codicon-clippy:before { content: "\eac0" }
238
+ .codicon-close-all:before { content: "\eac1" }
239
+ .codicon-cloud-download:before { content: "\eac2" }
240
+ .codicon-cloud-upload:before { content: "\eac3" }
241
+ .codicon-code:before { content: "\eac4" }
242
+ .codicon-collapse-all:before { content: "\eac5" }
243
+ .codicon-color-mode:before { content: "\eac6" }
244
+ .codicon-comment-discussion:before { content: "\eac7" }
245
+ .codicon-credit-card:before { content: "\eac9" }
246
+ .codicon-dash:before { content: "\eacc" }
247
+ .codicon-dashboard:before { content: "\eacd" }
248
+ .codicon-database:before { content: "\eace" }
249
+ .codicon-debug-continue:before { content: "\eacf" }
250
+ .codicon-debug-disconnect:before { content: "\ead0" }
251
+ .codicon-debug-pause:before { content: "\ead1" }
252
+ .codicon-debug-restart:before { content: "\ead2" }
253
+ .codicon-debug-start:before { content: "\ead3" }
254
+ .codicon-debug-step-into:before { content: "\ead4" }
255
+ .codicon-debug-step-out:before { content: "\ead5" }
256
+ .codicon-debug-step-over:before { content: "\ead6" }
257
+ .codicon-debug-stop:before { content: "\ead7" }
258
+ .codicon-debug:before { content: "\ead8" }
259
+ .codicon-device-camera-video:before { content: "\ead9" }
260
+ .codicon-device-camera:before { content: "\eada" }
261
+ .codicon-device-mobile:before { content: "\eadb" }
262
+ .codicon-diff-added:before { content: "\eadc" }
263
+ .codicon-diff-ignored:before { content: "\eadd" }
264
+ .codicon-diff-modified:before { content: "\eade" }
265
+ .codicon-diff-removed:before { content: "\eadf" }
266
+ .codicon-diff-renamed:before { content: "\eae0" }
267
+ .codicon-diff:before { content: "\eae1" }
268
+ .codicon-diff-sidebyside:before { content: "\eae1" }
269
+ .codicon-discard:before { content: "\eae2" }
270
+ .codicon-editor-layout:before { content: "\eae3" }
271
+ .codicon-empty-window:before { content: "\eae4" }
272
+ .codicon-exclude:before { content: "\eae5" }
273
+ .codicon-extensions:before { content: "\eae6" }
274
+ .codicon-eye-closed:before { content: "\eae7" }
275
+ .codicon-file-binary:before { content: "\eae8" }
276
+ .codicon-file-code:before { content: "\eae9" }
277
+ .codicon-file-media:before { content: "\eaea" }
278
+ .codicon-file-pdf:before { content: "\eaeb" }
279
+ .codicon-file-submodule:before { content: "\eaec" }
280
+ .codicon-file-symlink-directory:before { content: "\eaed" }
281
+ .codicon-file-symlink-file:before { content: "\eaee" }
282
+ .codicon-file-zip:before { content: "\eaef" }
283
+ .codicon-files:before { content: "\eaf0" }
284
+ .codicon-filter:before { content: "\eaf1" }
285
+ .codicon-flame:before { content: "\eaf2" }
286
+ .codicon-fold-down:before { content: "\eaf3" }
287
+ .codicon-fold-up:before { content: "\eaf4" }
288
+ .codicon-fold:before { content: "\eaf5" }
289
+ .codicon-folder-active:before { content: "\eaf6" }
290
+ .codicon-folder-opened:before { content: "\eaf7" }
291
+ .codicon-gear:before { content: "\eaf8" }
292
+ .codicon-gift:before { content: "\eaf9" }
293
+ .codicon-gist-secret:before { content: "\eafa" }
294
+ .codicon-gist:before { content: "\eafb" }
295
+ .codicon-git-commit:before { content: "\eafc" }
296
+ .codicon-git-compare:before { content: "\eafd" }
297
+ .codicon-compare-changes:before { content: "\eafd" }
298
+ .codicon-git-merge:before { content: "\eafe" }
299
+ .codicon-github-action:before { content: "\eaff" }
300
+ .codicon-github-alt:before { content: "\eb00" }
301
+ .codicon-globe:before { content: "\eb01" }
302
+ .codicon-grabber:before { content: "\eb02" }
303
+ .codicon-graph:before { content: "\eb03" }
304
+ .codicon-gripper:before { content: "\eb04" }
305
+ .codicon-heart:before { content: "\eb05" }
306
+ .codicon-home:before { content: "\eb06" }
307
+ .codicon-horizontal-rule:before { content: "\eb07" }
308
+ .codicon-hubot:before { content: "\eb08" }
309
+ .codicon-inbox:before { content: "\eb09" }
310
+ .codicon-issue-reopened:before { content: "\eb0b" }
311
+ .codicon-issues:before { content: "\eb0c" }
312
+ .codicon-italic:before { content: "\eb0d" }
313
+ .codicon-jersey:before { content: "\eb0e" }
314
+ .codicon-json:before { content: "\eb0f" }
315
+ .codicon-kebab-vertical:before { content: "\eb10" }
316
+ .codicon-key:before { content: "\eb11" }
317
+ .codicon-law:before { content: "\eb12" }
318
+ .codicon-lightbulb-autofix:before { content: "\eb13" }
319
+ .codicon-link-external:before { content: "\eb14" }
320
+ .codicon-link:before { content: "\eb15" }
321
+ .codicon-list-ordered:before { content: "\eb16" }
322
+ .codicon-list-unordered:before { content: "\eb17" }
323
+ .codicon-live-share:before { content: "\eb18" }
324
+ .codicon-loading:before { content: "\eb19" }
325
+ .codicon-location:before { content: "\eb1a" }
326
+ .codicon-mail-read:before { content: "\eb1b" }
327
+ .codicon-mail:before { content: "\eb1c" }
328
+ .codicon-markdown:before { content: "\eb1d" }
329
+ .codicon-megaphone:before { content: "\eb1e" }
330
+ .codicon-mention:before { content: "\eb1f" }
331
+ .codicon-milestone:before { content: "\eb20" }
332
+ .codicon-git-pull-request-milestone:before { content: "\eb20" }
333
+ .codicon-mortar-board:before { content: "\eb21" }
334
+ .codicon-move:before { content: "\eb22" }
335
+ .codicon-multiple-windows:before { content: "\eb23" }
336
+ .codicon-mute:before { content: "\eb24" }
337
+ .codicon-no-newline:before { content: "\eb25" }
338
+ .codicon-note:before { content: "\eb26" }
339
+ .codicon-octoface:before { content: "\eb27" }
340
+ .codicon-open-preview:before { content: "\eb28" }
341
+ .codicon-package:before { content: "\eb29" }
342
+ .codicon-paintcan:before { content: "\eb2a" }
343
+ .codicon-pin:before { content: "\eb2b" }
344
+ .codicon-play:before { content: "\eb2c" }
345
+ .codicon-run:before { content: "\eb2c" }
346
+ .codicon-plug:before { content: "\eb2d" }
347
+ .codicon-preserve-case:before { content: "\eb2e" }
348
+ .codicon-preview:before { content: "\eb2f" }
349
+ .codicon-project:before { content: "\eb30" }
350
+ .codicon-pulse:before { content: "\eb31" }
351
+ .codicon-question:before { content: "\eb32" }
352
+ .codicon-quote:before { content: "\eb33" }
353
+ .codicon-radio-tower:before { content: "\eb34" }
354
+ .codicon-reactions:before { content: "\eb35" }
355
+ .codicon-references:before { content: "\eb36" }
356
+ .codicon-refresh:before { content: "\eb37" }
357
+ .codicon-regex:before { content: "\eb38" }
358
+ .codicon-remote-explorer:before { content: "\eb39" }
359
+ .codicon-remote:before { content: "\eb3a" }
360
+ .codicon-remove:before { content: "\eb3b" }
361
+ .codicon-replace-all:before { content: "\eb3c" }
362
+ .codicon-replace:before { content: "\eb3d" }
363
+ .codicon-repo-clone:before { content: "\eb3e" }
364
+ .codicon-repo-force-push:before { content: "\eb3f" }
365
+ .codicon-repo-pull:before { content: "\eb40" }
366
+ .codicon-repo-push:before { content: "\eb41" }
367
+ .codicon-report:before { content: "\eb42" }
368
+ .codicon-request-changes:before { content: "\eb43" }
369
+ .codicon-rocket:before { content: "\eb44" }
370
+ .codicon-root-folder-opened:before { content: "\eb45" }
371
+ .codicon-root-folder:before { content: "\eb46" }
372
+ .codicon-rss:before { content: "\eb47" }
373
+ .codicon-ruby:before { content: "\eb48" }
374
+ .codicon-save-all:before { content: "\eb49" }
375
+ .codicon-save-as:before { content: "\eb4a" }
376
+ .codicon-save:before { content: "\eb4b" }
377
+ .codicon-screen-full:before { content: "\eb4c" }
378
+ .codicon-screen-normal:before { content: "\eb4d" }
379
+ .codicon-search-stop:before { content: "\eb4e" }
380
+ .codicon-server:before { content: "\eb50" }
381
+ .codicon-settings-gear:before { content: "\eb51" }
382
+ .codicon-settings:before { content: "\eb52" }
383
+ .codicon-shield:before { content: "\eb53" }
384
+ .codicon-smiley:before { content: "\eb54" }
385
+ .codicon-sort-precedence:before { content: "\eb55" }
386
+ .codicon-split-horizontal:before { content: "\eb56" }
387
+ .codicon-split-vertical:before { content: "\eb57" }
388
+ .codicon-squirrel:before { content: "\eb58" }
389
+ .codicon-star-full:before { content: "\eb59" }
390
+ .codicon-star-half:before { content: "\eb5a" }
391
+ .codicon-symbol-class:before { content: "\eb5b" }
392
+ .codicon-symbol-color:before { content: "\eb5c" }
393
+ .codicon-symbol-constant:before { content: "\eb5d" }
394
+ .codicon-symbol-enum-member:before { content: "\eb5e" }
395
+ .codicon-symbol-field:before { content: "\eb5f" }
396
+ .codicon-symbol-file:before { content: "\eb60" }
397
+ .codicon-symbol-interface:before { content: "\eb61" }
398
+ .codicon-symbol-keyword:before { content: "\eb62" }
399
+ .codicon-symbol-misc:before { content: "\eb63" }
400
+ .codicon-symbol-operator:before { content: "\eb64" }
401
+ .codicon-symbol-property:before { content: "\eb65" }
402
+ .codicon-wrench:before { content: "\eb65" }
403
+ .codicon-wrench-subaction:before { content: "\eb65" }
404
+ .codicon-symbol-snippet:before { content: "\eb66" }
405
+ .codicon-tasklist:before { content: "\eb67" }
406
+ .codicon-telescope:before { content: "\eb68" }
407
+ .codicon-text-size:before { content: "\eb69" }
408
+ .codicon-three-bars:before { content: "\eb6a" }
409
+ .codicon-thumbsdown:before { content: "\eb6b" }
410
+ .codicon-thumbsup:before { content: "\eb6c" }
411
+ .codicon-tools:before { content: "\eb6d" }
412
+ .codicon-triangle-down:before { content: "\eb6e" }
413
+ .codicon-triangle-left:before { content: "\eb6f" }
414
+ .codicon-triangle-right:before { content: "\eb70" }
415
+ .codicon-triangle-up:before { content: "\eb71" }
416
+ .codicon-twitter:before { content: "\eb72" }
417
+ .codicon-unfold:before { content: "\eb73" }
418
+ .codicon-unlock:before { content: "\eb74" }
419
+ .codicon-unmute:before { content: "\eb75" }
420
+ .codicon-unverified:before { content: "\eb76" }
421
+ .codicon-verified:before { content: "\eb77" }
422
+ .codicon-versions:before { content: "\eb78" }
423
+ .codicon-vm-active:before { content: "\eb79" }
424
+ .codicon-vm-outline:before { content: "\eb7a" }
425
+ .codicon-vm-running:before { content: "\eb7b" }
426
+ .codicon-watch:before { content: "\eb7c" }
427
+ .codicon-whitespace:before { content: "\eb7d" }
428
+ .codicon-whole-word:before { content: "\eb7e" }
429
+ .codicon-window:before { content: "\eb7f" }
430
+ .codicon-word-wrap:before { content: "\eb80" }
431
+ .codicon-zoom-in:before { content: "\eb81" }
432
+ .codicon-zoom-out:before { content: "\eb82" }
433
+ .codicon-list-filter:before { content: "\eb83" }
434
+ .codicon-list-flat:before { content: "\eb84" }
435
+ .codicon-list-selection:before { content: "\eb85" }
436
+ .codicon-selection:before { content: "\eb85" }
437
+ .codicon-list-tree:before { content: "\eb86" }
438
+ .codicon-debug-breakpoint-function-unverified:before { content: "\eb87" }
439
+ .codicon-debug-breakpoint-function:before { content: "\eb88" }
440
+ .codicon-debug-breakpoint-function-disabled:before { content: "\eb88" }
441
+ .codicon-debug-stackframe-active:before { content: "\eb89" }
442
+ .codicon-circle-small-filled:before { content: "\eb8a" }
443
+ .codicon-debug-stackframe-dot:before { content: "\eb8a" }
444
+ .codicon-terminal-decoration-mark:before { content: "\eb8a" }
445
+ .codicon-debug-stackframe:before { content: "\eb8b" }
446
+ .codicon-debug-stackframe-focused:before { content: "\eb8b" }
447
+ .codicon-debug-breakpoint-unsupported:before { content: "\eb8c" }
448
+ .codicon-symbol-string:before { content: "\eb8d" }
449
+ .codicon-debug-reverse-continue:before { content: "\eb8e" }
450
+ .codicon-debug-step-back:before { content: "\eb8f" }
451
+ .codicon-debug-restart-frame:before { content: "\eb90" }
452
+ .codicon-debug-alt:before { content: "\eb91" }
453
+ .codicon-call-incoming:before { content: "\eb92" }
454
+ .codicon-call-outgoing:before { content: "\eb93" }
455
+ .codicon-menu:before { content: "\eb94" }
456
+ .codicon-expand-all:before { content: "\eb95" }
457
+ .codicon-feedback:before { content: "\eb96" }
458
+ .codicon-git-pull-request-reviewer:before { content: "\eb96" }
459
+ .codicon-group-by-ref-type:before { content: "\eb97" }
460
+ .codicon-ungroup-by-ref-type:before { content: "\eb98" }
461
+ .codicon-account:before { content: "\eb99" }
462
+ .codicon-git-pull-request-assignee:before { content: "\eb99" }
463
+ .codicon-bell-dot:before { content: "\eb9a" }
464
+ .codicon-debug-console:before { content: "\eb9b" }
465
+ .codicon-library:before { content: "\eb9c" }
466
+ .codicon-output:before { content: "\eb9d" }
467
+ .codicon-run-all:before { content: "\eb9e" }
468
+ .codicon-sync-ignored:before { content: "\eb9f" }
469
+ .codicon-pinned:before { content: "\eba0" }
470
+ .codicon-github-inverted:before { content: "\eba1" }
471
+ .codicon-server-process:before { content: "\eba2" }
472
+ .codicon-server-environment:before { content: "\eba3" }
473
+ .codicon-pass:before { content: "\eba4" }
474
+ .codicon-issue-closed:before { content: "\eba4" }
475
+ .codicon-stop-circle:before { content: "\eba5" }
476
+ .codicon-play-circle:before { content: "\eba6" }
477
+ .codicon-record:before { content: "\eba7" }
478
+ .codicon-debug-alt-small:before { content: "\eba8" }
479
+ .codicon-vm-connect:before { content: "\eba9" }
480
+ .codicon-cloud:before { content: "\ebaa" }
481
+ .codicon-merge:before { content: "\ebab" }
482
+ .codicon-export:before { content: "\ebac" }
483
+ .codicon-graph-left:before { content: "\ebad" }
484
+ .codicon-magnet:before { content: "\ebae" }
485
+ .codicon-notebook:before { content: "\ebaf" }
486
+ .codicon-redo:before { content: "\ebb0" }
487
+ .codicon-check-all:before { content: "\ebb1" }
488
+ .codicon-pinned-dirty:before { content: "\ebb2" }
489
+ .codicon-pass-filled:before { content: "\ebb3" }
490
+ .codicon-circle-large-filled:before { content: "\ebb4" }
491
+ .codicon-circle-large:before { content: "\ebb5" }
492
+ .codicon-circle-large-outline:before { content: "\ebb5" }
493
+ .codicon-combine:before { content: "\ebb6" }
494
+ .codicon-gather:before { content: "\ebb6" }
495
+ .codicon-table:before { content: "\ebb7" }
496
+ .codicon-variable-group:before { content: "\ebb8" }
497
+ .codicon-type-hierarchy:before { content: "\ebb9" }
498
+ .codicon-type-hierarchy-sub:before { content: "\ebba" }
499
+ .codicon-type-hierarchy-super:before { content: "\ebbb" }
500
+ .codicon-git-pull-request-create:before { content: "\ebbc" }
501
+ .codicon-run-above:before { content: "\ebbd" }
502
+ .codicon-run-below:before { content: "\ebbe" }
503
+ .codicon-notebook-template:before { content: "\ebbf" }
504
+ .codicon-debug-rerun:before { content: "\ebc0" }
505
+ .codicon-workspace-trusted:before { content: "\ebc1" }
506
+ .codicon-workspace-untrusted:before { content: "\ebc2" }
507
+ .codicon-workspace-unknown:before { content: "\ebc3" }
508
+ .codicon-terminal-cmd:before { content: "\ebc4" }
509
+ .codicon-terminal-debian:before { content: "\ebc5" }
510
+ .codicon-terminal-linux:before { content: "\ebc6" }
511
+ .codicon-terminal-powershell:before { content: "\ebc7" }
512
+ .codicon-terminal-tmux:before { content: "\ebc8" }
513
+ .codicon-terminal-ubuntu:before { content: "\ebc9" }
514
+ .codicon-terminal-bash:before { content: "\ebca" }
515
+ .codicon-arrow-swap:before { content: "\ebcb" }
516
+ .codicon-copy:before { content: "\ebcc" }
517
+ .codicon-person-add:before { content: "\ebcd" }
518
+ .codicon-filter-filled:before { content: "\ebce" }
519
+ .codicon-wand:before { content: "\ebcf" }
520
+ .codicon-debug-line-by-line:before { content: "\ebd0" }
521
+ .codicon-inspect:before { content: "\ebd1" }
522
+ .codicon-layers:before { content: "\ebd2" }
523
+ .codicon-layers-dot:before { content: "\ebd3" }
524
+ .codicon-layers-active:before { content: "\ebd4" }
525
+ .codicon-compass:before { content: "\ebd5" }
526
+ .codicon-compass-dot:before { content: "\ebd6" }
527
+ .codicon-compass-active:before { content: "\ebd7" }
528
+ .codicon-azure:before { content: "\ebd8" }
529
+ .codicon-issue-draft:before { content: "\ebd9" }
530
+ .codicon-git-pull-request-closed:before { content: "\ebda" }
531
+ .codicon-git-pull-request-draft:before { content: "\ebdb" }
532
+ .codicon-debug-all:before { content: "\ebdc" }
533
+ .codicon-debug-coverage:before { content: "\ebdd" }
534
+ .codicon-run-errors:before { content: "\ebde" }
535
+ .codicon-folder-library:before { content: "\ebdf" }
536
+ .codicon-debug-continue-small:before { content: "\ebe0" }
537
+ .codicon-beaker-stop:before { content: "\ebe1" }
538
+ .codicon-graph-line:before { content: "\ebe2" }
539
+ .codicon-graph-scatter:before { content: "\ebe3" }
540
+ .codicon-pie-chart:before { content: "\ebe4" }
541
+ .codicon-bracket:before { content: "\eb0f" }
542
+ .codicon-bracket-dot:before { content: "\ebe5" }
543
+ .codicon-bracket-error:before { content: "\ebe6" }
544
+ .codicon-lock-small:before { content: "\ebe7" }
545
+ .codicon-azure-devops:before { content: "\ebe8" }
546
+ .codicon-verified-filled:before { content: "\ebe9" }
547
+ .codicon-newline:before { content: "\ebea" }
548
+ .codicon-layout:before { content: "\ebeb" }
549
+ .codicon-layout-activitybar-left:before { content: "\ebec" }
550
+ .codicon-layout-activitybar-right:before { content: "\ebed" }
551
+ .codicon-layout-panel-left:before { content: "\ebee" }
552
+ .codicon-layout-panel-center:before { content: "\ebef" }
553
+ .codicon-layout-panel-justify:before { content: "\ebf0" }
554
+ .codicon-layout-panel-right:before { content: "\ebf1" }
555
+ .codicon-layout-panel:before { content: "\ebf2" }
556
+ .codicon-layout-sidebar-left:before { content: "\ebf3" }
557
+ .codicon-layout-sidebar-right:before { content: "\ebf4" }
558
+ .codicon-layout-statusbar:before { content: "\ebf5" }
559
+ .codicon-layout-menubar:before { content: "\ebf6" }
560
+ .codicon-layout-centered:before { content: "\ebf7" }
561
+ .codicon-target:before { content: "\ebf8" }
562
+ .codicon-indent:before { content: "\ebf9" }
563
+ .codicon-record-small:before { content: "\ebfa" }
564
+ .codicon-error-small:before { content: "\ebfb" }
565
+ .codicon-terminal-decoration-error:before { content: "\ebfb" }
566
+ .codicon-arrow-circle-down:before { content: "\ebfc" }
567
+ .codicon-arrow-circle-left:before { content: "\ebfd" }
568
+ .codicon-arrow-circle-right:before { content: "\ebfe" }
569
+ .codicon-arrow-circle-up:before { content: "\ebff" }
570
+ .codicon-layout-sidebar-right-off:before { content: "\ec00" }
571
+ .codicon-layout-panel-off:before { content: "\ec01" }
572
+ .codicon-layout-sidebar-left-off:before { content: "\ec02" }
573
+ .codicon-blank:before { content: "\ec03" }
574
+ .codicon-heart-filled:before { content: "\ec04" }
575
+ .codicon-map:before { content: "\ec05" }
576
+ .codicon-map-horizontal:before { content: "\ec05" }
577
+ .codicon-fold-horizontal:before { content: "\ec05" }
578
+ .codicon-map-filled:before { content: "\ec06" }
579
+ .codicon-map-horizontal-filled:before { content: "\ec06" }
580
+ .codicon-fold-horizontal-filled:before { content: "\ec06" }
581
+ .codicon-circle-small:before { content: "\ec07" }
582
+ .codicon-bell-slash:before { content: "\ec08" }
583
+ .codicon-bell-slash-dot:before { content: "\ec09" }
584
+ .codicon-comment-unresolved:before { content: "\ec0a" }
585
+ .codicon-git-pull-request-go-to-changes:before { content: "\ec0b" }
586
+ .codicon-git-pull-request-new-changes:before { content: "\ec0c" }
587
+ .codicon-search-fuzzy:before { content: "\ec0d" }
588
+ .codicon-comment-draft:before { content: "\ec0e" }
589
+ .codicon-send:before { content: "\ec0f" }
590
+ .codicon-sparkle:before { content: "\ec10" }
591
+ .codicon-insert:before { content: "\ec11" }
592
+ .codicon-mic:before { content: "\ec12" }
593
+ .codicon-thumbsdown-filled:before { content: "\ec13" }
594
+ .codicon-thumbsup-filled:before { content: "\ec14" }
595
+ .codicon-coffee:before { content: "\ec15" }
596
+ .codicon-snake:before { content: "\ec16" }
597
+ .codicon-game:before { content: "\ec17" }
598
+ .codicon-vr:before { content: "\ec18" }
599
+ .codicon-chip:before { content: "\ec19" }
600
+ .codicon-piano:before { content: "\ec1a" }
601
+ .codicon-music:before { content: "\ec1b" }
602
+ .codicon-mic-filled:before { content: "\ec1c" }
603
+ .codicon-repo-fetch:before { content: "\ec1d" }
604
+ .codicon-copilot:before { content: "\ec1e" }
605
+ .codicon-lightbulb-sparkle:before { content: "\ec1f" }
606
+ .codicon-robot:before { content: "\ec20" }
607
+ .codicon-sparkle-filled:before { content: "\ec21" }
608
+ .codicon-diff-single:before { content: "\ec22" }
609
+ .codicon-diff-multiple:before { content: "\ec23" }
610
+ .codicon-surround-with:before { content: "\ec24" }
611
+ .codicon-share:before { content: "\ec25" }
612
+ .codicon-git-stash:before { content: "\ec26" }
613
+ .codicon-git-stash-apply:before { content: "\ec27" }
614
+ .codicon-git-stash-pop:before { content: "\ec28" }
615
+ .codicon-vscode:before { content: "\ec29" }
616
+ .codicon-vscode-insiders:before { content: "\ec2a" }
617
+ .codicon-code-oss:before { content: "\ec2b" }
618
+ .codicon-run-coverage:before { content: "\ec2c" }
619
+ .codicon-run-all-coverage:before { content: "\ec2d" }
620
+ .codicon-coverage:before { content: "\ec2e" }
621
+ .codicon-github-project:before { content: "\ec2f" }
622
+ .codicon-map-vertical:before { content: "\ec30" }
623
+ .codicon-fold-vertical:before { content: "\ec30" }
624
+ .codicon-map-vertical-filled:before { content: "\ec31" }
625
+ .codicon-fold-vertical-filled:before { content: "\ec31" }
626
+ .codicon-go-to-search:before { content: "\ec32" }
627
+ .codicon-percentage:before { content: "\ec33" }
628
+ .codicon-sort-percentage:before { content: "\ec33" }
629
+ .codicon-attach:before { content: "\ec34" }
630
+ .codicon-go-to-editing-session:before { content: "\ec35" }
631
+ .codicon-edit-session:before { content: "\ec36" }
632
+ .codicon-code-review:before { content: "\ec37" }
633
+ .codicon-copilot-warning:before { content: "\ec38" }
634
+ .codicon-python:before { content: "\ec39" }
635
+ .codicon-git-fetch:before { content: "\f101" }