@vscode/codicons 0.0.27 → 0.0.30
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/dist/codicon.css +53 -2
- package/dist/codicon.csv +20 -0
- package/dist/codicon.html +550 -390
- package/dist/codicon.svg +1 -1
- package/dist/codicon.ttf +0 -0
- package/package.json +2 -2
- package/src/icons/arrow-circle-down.svg +1 -0
- package/src/icons/arrow-circle-left.svg +1 -0
- package/src/icons/arrow-circle-right.svg +1 -0
- package/src/icons/arrow-circle-up.svg +1 -0
- package/src/icons/error-small.svg +1 -0
- package/src/icons/eye-closed.svg +1 -1
- package/src/icons/eye.svg +1 -1
- package/src/icons/git-commit.svg +1 -1
- package/src/icons/indent.svg +1 -0
- package/src/icons/layout-activitybar-left.svg +1 -0
- package/src/icons/layout-activitybar-right.svg +1 -0
- package/src/icons/layout-centered.svg +1 -0
- package/src/icons/layout-menubar.svg +1 -0
- package/src/icons/layout-panel-center.svg +1 -0
- package/src/icons/layout-panel-justify.svg +1 -0
- package/src/icons/layout-panel-left.svg +1 -0
- package/src/icons/layout-panel-right.svg +1 -0
- package/src/icons/layout-panel.svg +1 -0
- package/src/icons/layout-sidebar-left.svg +1 -0
- package/src/icons/layout-sidebar-right.svg +1 -0
- package/src/icons/layout-statusbar.svg +1 -0
- package/src/icons/layout.svg +1 -1
- package/src/icons/record-small.svg +1 -0
- package/src/icons/target.svg +1 -0
- package/src/template/mapping.json +21 -1
- package/src/template/preview.hbs +3 -3
- package/src/template/styles.hbs +32 -1
package/dist/codicon.css
CHANGED
|
@@ -5,12 +5,13 @@
|
|
|
5
5
|
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: "codicon";
|
|
8
|
-
|
|
8
|
+
font-display: block;
|
|
9
|
+
src: url("./codicon.ttf?f6ab4abcfdcac2bb563bb55b9602bc7f") format("truetype");
|
|
9
10
|
}
|
|
10
11
|
|
|
11
12
|
.codicon[class*='codicon-'] {
|
|
12
13
|
font: normal normal normal 16px/1 codicon;
|
|
13
|
-
display: block;
|
|
14
|
+
display: inline-block;
|
|
14
15
|
text-decoration: none;
|
|
15
16
|
text-rendering: auto;
|
|
16
17
|
text-align: center;
|
|
@@ -21,6 +22,36 @@
|
|
|
21
22
|
-ms-user-select: none;
|
|
22
23
|
}
|
|
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
|
+
/* custom speed & easing for loading icon */
|
|
47
|
+
.codicon-loading {
|
|
48
|
+
animation-duration: 1s !important;
|
|
49
|
+
animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67) !important;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/*---------------------
|
|
53
|
+
* Icons
|
|
54
|
+
*-------------------*/
|
|
24
55
|
|
|
25
56
|
.codicon-add:before { content: "\ea60" }
|
|
26
57
|
.codicon-plus:before { content: "\ea60" }
|
|
@@ -500,3 +531,23 @@
|
|
|
500
531
|
.codicon-verified-filled:before { content: "\ebe9" }
|
|
501
532
|
.codicon-newline:before { content: "\ebea" }
|
|
502
533
|
.codicon-layout:before { content: "\ebeb" }
|
|
534
|
+
.codicon-layout-activitybar-left:before { content: "\ebec" }
|
|
535
|
+
.codicon-layout-activitybar-right:before { content: "\ebed" }
|
|
536
|
+
.codicon-layout-panel-left:before { content: "\ebee" }
|
|
537
|
+
.codicon-layout-panel-center:before { content: "\ebef" }
|
|
538
|
+
.codicon-layout-panel-justify:before { content: "\ebf0" }
|
|
539
|
+
.codicon-layout-panel-right:before { content: "\ebf1" }
|
|
540
|
+
.codicon-layout-panel:before { content: "\ebf2" }
|
|
541
|
+
.codicon-layout-sidebar-left:before { content: "\ebf3" }
|
|
542
|
+
.codicon-layout-sidebar-right:before { content: "\ebf4" }
|
|
543
|
+
.codicon-layout-statusbar:before { content: "\ebf5" }
|
|
544
|
+
.codicon-layout-menubar:before { content: "\ebf6" }
|
|
545
|
+
.codicon-layout-centered:before { content: "\ebf7" }
|
|
546
|
+
.codicon-target:before { content: "\ebf8" }
|
|
547
|
+
.codicon-indent:before { content: "\ebf9" }
|
|
548
|
+
.codicon-record-small:before { content: "\ebfa" }
|
|
549
|
+
.codicon-error-small:before { content: "\ebfb" }
|
|
550
|
+
.codicon-arrow-circle-down:before { content: "\ebfc" }
|
|
551
|
+
.codicon-arrow-circle-left:before { content: "\ebfd" }
|
|
552
|
+
.codicon-arrow-circle-right:before { content: "\ebfe" }
|
|
553
|
+
.codicon-arrow-circle-up:before { content: "\ebff" }
|
package/dist/codicon.csv
CHANGED
|
@@ -4,6 +4,10 @@ activate-breakpoints,,EA97
|
|
|
4
4
|
add,,EA60
|
|
5
5
|
archive,,EA98
|
|
6
6
|
arrow-both,,EA99
|
|
7
|
+
arrow-circle-down,,EBFC
|
|
8
|
+
arrow-circle-left,,EBFD
|
|
9
|
+
arrow-circle-right,,EBFE
|
|
10
|
+
arrow-circle-up,,EBFF
|
|
7
11
|
arrow-down,,EA9A
|
|
8
12
|
arrow-left,,EA9B
|
|
9
13
|
arrow-right,,EA9C
|
|
@@ -118,6 +122,7 @@ edit,,EA73
|
|
|
118
122
|
editor-layout,,EAE3
|
|
119
123
|
ellipsis,,EA7C
|
|
120
124
|
empty-window,,EAE4
|
|
125
|
+
error-small,,EBFB
|
|
121
126
|
error,,EA87
|
|
122
127
|
exclude,,EAE5
|
|
123
128
|
expand-all,,EB95
|
|
@@ -175,6 +180,7 @@ home,,EB06
|
|
|
175
180
|
horizontal-rule,,EB07
|
|
176
181
|
hubot,,EB08
|
|
177
182
|
inbox,,EB09
|
|
183
|
+
indent,,EBF9
|
|
178
184
|
info,,EA74
|
|
179
185
|
inspect,,EBD1
|
|
180
186
|
issue-draft,,EBD9
|
|
@@ -189,6 +195,18 @@ law,,EB12
|
|
|
189
195
|
layers-active,,EBD4
|
|
190
196
|
layers-dot,,EBD3
|
|
191
197
|
layers,,EBD2
|
|
198
|
+
layout-activitybar-left,,EBEC
|
|
199
|
+
layout-activitybar-right,,EBED
|
|
200
|
+
layout-centered,,EBF7
|
|
201
|
+
layout-menubar,,EBF6
|
|
202
|
+
layout-panel-center,,EBEF
|
|
203
|
+
layout-panel-justify,,EBF0
|
|
204
|
+
layout-panel-left,,EBEE
|
|
205
|
+
layout-panel-right,,EBF1
|
|
206
|
+
layout-panel,,EBF2
|
|
207
|
+
layout-sidebar-left,,EBF3
|
|
208
|
+
layout-sidebar-right,,EBF4
|
|
209
|
+
layout-statusbar,,EBF5
|
|
192
210
|
layout,,EBEB
|
|
193
211
|
library,,EB9C
|
|
194
212
|
lightbulb-autofix,,EB13
|
|
@@ -254,6 +272,7 @@ quote,,EB33
|
|
|
254
272
|
radio-tower,,EB34
|
|
255
273
|
reactions,,EB35
|
|
256
274
|
record-keys,,EA65
|
|
275
|
+
record-small,,EBFA
|
|
257
276
|
record,,EBA7
|
|
258
277
|
redo,,EBB0
|
|
259
278
|
references,,EB36
|
|
@@ -336,6 +355,7 @@ sync-ignored,,EB9F
|
|
|
336
355
|
sync,,EA77
|
|
337
356
|
table,,EBB7
|
|
338
357
|
tag,,EA66
|
|
358
|
+
target,,EBF8
|
|
339
359
|
tasklist,,EB67
|
|
340
360
|
telescope,,EB68
|
|
341
361
|
terminal-bash,,EBCA
|