@acorex/styles 5.0.29 → 5.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/_calendar.scss +8 -0
- package/src/components/_dropdown.scss +38 -9
- package/src/components/_form.scss +1 -1
- package/src/components/_list.scss +17 -1
- package/src/components/_popup.scss +4 -4
- package/src/components/_selectbox.scss +1 -1
- package/src/icons/demo.html +43 -1
- package/src/icons/fonts/acorex-icon.svg +3 -0
- package/src/icons/fonts/acorex-icon.ttf +0 -0
- package/src/icons/fonts/acorex-icon.woff +0 -0
- package/src/icons/selection.json +1 -1
- package/src/icons/style.css +12 -3
- package/src/icons/style.scss +18 -3
- package/src/icons/variables.scss +3 -0
package/package.json
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
@layer components {
|
2
|
+
|
2
3
|
ax-drop-down,
|
3
4
|
.ax-drop-down {
|
4
5
|
display: contents;
|
@@ -20,6 +21,34 @@
|
|
20
21
|
@apply ax-bg-white ax-border ax-rounded ax-border-light-300;
|
21
22
|
@include control-dark("surface");
|
22
23
|
|
24
|
+
&.ax-overlay-center {
|
25
|
+
@apply ax-h-fit;
|
26
|
+
max-height: 90vh;
|
27
|
+
width: 80vw;
|
28
|
+
}
|
29
|
+
|
30
|
+
&.ax-overlay-actionsheet {
|
31
|
+
@apply ax-w-full;
|
32
|
+
height: 50vh;
|
33
|
+
max-height: 70vh;
|
34
|
+
}
|
35
|
+
|
36
|
+
&.ax-overlay-full {
|
37
|
+
@apply ax-w-screen ax-h-screen;
|
38
|
+
}
|
39
|
+
|
40
|
+
.ax-overlay-pane-header {
|
41
|
+
@apply ax-p-4 ax-border-b ax-border-light-300 dark:ax-border-light-700 ax-flex ax-justify-between ax-items-center;
|
42
|
+
|
43
|
+
span {
|
44
|
+
@apply ax-font-medium;
|
45
|
+
}
|
46
|
+
|
47
|
+
i {
|
48
|
+
@apply ax-text-primary-500 ax-cursor-pointer ax-text-xl;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
23
52
|
&.ax-dropdown-list {
|
24
53
|
@apply ax-border ax-border-solid ax-flex ax-flex-col ax-py-1 ax-rounded ax-shadow-sm;
|
25
54
|
|
@@ -91,7 +120,7 @@
|
|
91
120
|
}
|
92
121
|
|
93
122
|
&.ax-state-selected {
|
94
|
-
@apply ax-bg-warning-200
|
123
|
+
@apply ax-bg-warning-200 dark:ax-bg-warning-600 dark:ax-text-warning-100;
|
95
124
|
}
|
96
125
|
}
|
97
126
|
|
@@ -108,7 +137,7 @@
|
|
108
137
|
}
|
109
138
|
|
110
139
|
&.ax-state-selected {
|
111
|
-
@apply ax-bg-danger-200
|
140
|
+
@apply ax-bg-danger-200 dark:ax-bg-danger-600 dark:ax-text-danger-100;
|
112
141
|
}
|
113
142
|
}
|
114
143
|
|
@@ -125,7 +154,7 @@
|
|
125
154
|
}
|
126
155
|
|
127
156
|
&.ax-state-selected {
|
128
|
-
@apply ax-bg-success-200
|
157
|
+
@apply ax-bg-success-200 dark:ax-bg-success-600 dark:ax-text-success-100;
|
129
158
|
}
|
130
159
|
}
|
131
160
|
|
@@ -142,16 +171,16 @@
|
|
142
171
|
}
|
143
172
|
|
144
173
|
&.ax-state-selected {
|
145
|
-
@apply ax-bg-info-200
|
174
|
+
@apply ax-bg-info-200 dark:ax-bg-info-600 dark:ax-text-info-100;
|
146
175
|
}
|
147
176
|
}
|
148
177
|
|
149
178
|
&.ax-dark-default {
|
150
|
-
@apply ax-bg-transparent ax-text-dark-500 ax-border-transparent
|
179
|
+
@apply ax-bg-transparent ax-text-dark-500 ax-border-transparent dark:ax-text-dark-100;
|
151
180
|
|
152
181
|
&:hover,
|
153
182
|
&:focus {
|
154
|
-
@apply ax-bg-dark-50 ax-text-dark-600 dark:ax-bg-dark-400
|
183
|
+
@apply ax-bg-dark-50 ax-text-dark-600 dark:ax-bg-dark-400 dark:ax-text-dark-50;
|
155
184
|
}
|
156
185
|
|
157
186
|
&:active {
|
@@ -159,7 +188,7 @@
|
|
159
188
|
}
|
160
189
|
|
161
190
|
&.ax-state-selected {
|
162
|
-
@apply ax-bg-dark-200
|
191
|
+
@apply ax-bg-dark-200 dark:ax-bg-dark-400 dark:ax-text-dark-100;
|
163
192
|
}
|
164
193
|
}
|
165
194
|
|
@@ -176,10 +205,10 @@
|
|
176
205
|
}
|
177
206
|
|
178
207
|
&.ax-state-selected {
|
179
|
-
@apply ax-bg-light-200
|
208
|
+
@apply ax-bg-light-200 dark:ax-bg-light-600 dark:ax-text-light-100;
|
180
209
|
}
|
181
210
|
}
|
182
211
|
}
|
183
212
|
}
|
184
213
|
}
|
185
|
-
}
|
214
|
+
}
|
@@ -2,32 +2,41 @@
|
|
2
2
|
.ax-list {
|
3
3
|
display: block;
|
4
4
|
}
|
5
|
+
|
5
6
|
.ax-list-container {
|
6
7
|
.ax-list-items-container {
|
7
8
|
@apply ax-py-1 ax-rounded ax-overflow-y-auto ax-h-full dark:ax-border-transparent;
|
9
|
+
|
8
10
|
&.ax-vertical {
|
9
11
|
@apply ax-grid ax-grid-cols-1;
|
12
|
+
|
10
13
|
&.ax-divide {
|
11
14
|
@apply ax-divide-y ax-divide-x-0 ax-divide-light-600 ax-divide-opacity-30 ax-divide-solid;
|
12
15
|
}
|
13
16
|
}
|
17
|
+
|
14
18
|
&.ax-default {
|
15
19
|
@apply ax-cursor-pointer;
|
20
|
+
|
16
21
|
.ax-list-item {
|
17
22
|
height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
18
23
|
@apply ax-text-sm ax-flex ax-items-center ax-px-3;
|
24
|
+
|
19
25
|
&:focus,
|
20
26
|
&:focus-visible {
|
21
27
|
@apply ax-outline-none;
|
22
28
|
}
|
29
|
+
|
23
30
|
&:hover {
|
24
31
|
&:not(.ax-state-selected) {
|
25
32
|
@apply ax-bg-light-100 ax-text-light-fore dark:ax-bg-white/[0.09] dark:ax-text-light-50;
|
26
33
|
}
|
27
34
|
}
|
35
|
+
|
28
36
|
&.ax-state-selected {
|
29
|
-
@apply ax-
|
37
|
+
@apply ax-text-primary-500 ax-font-medium dark:ax-text-primary-50;
|
30
38
|
}
|
39
|
+
|
31
40
|
&:focus,
|
32
41
|
&.ax-state-focus {
|
33
42
|
&:not(.ax-state-selected) {
|
@@ -37,13 +46,20 @@
|
|
37
46
|
}
|
38
47
|
}
|
39
48
|
}
|
49
|
+
|
40
50
|
.ax-list-loading-container {
|
41
51
|
@apply ax-flex ax-justify-center ax-p-2;
|
42
52
|
}
|
43
53
|
}
|
54
|
+
|
44
55
|
.cdk-overlay-container {
|
45
56
|
.ax-list-items-container {
|
46
57
|
max-height: 25vh;
|
58
|
+
|
59
|
+
&.ax-full {
|
60
|
+
max-height: 75vh;
|
61
|
+
height: fit-content;
|
62
|
+
}
|
47
63
|
}
|
48
64
|
}
|
49
65
|
}
|
@@ -13,9 +13,7 @@
|
|
13
13
|
}
|
14
14
|
|
15
15
|
.ax-popup {
|
16
|
-
max-
|
17
|
-
min-height: fit-content;
|
18
|
-
@apply ax-flex ax-flex-col ax-bg-white ax-w-6/12 ax-shadow-lg ax-border ax-border-solid ax-border-light-300 ax-rounded ax-outline-none ax-p-0;
|
16
|
+
@apply ax-flex ax-flex-col ax-bg-white ax-w-6/12 ax-shadow-lg ax-border ax-border-solid ax-border-light-300 ax-rounded ax-outline-none ax-p-0 ax-max-h-[98vh] ax-min-h-fit;
|
19
17
|
@include control-dark('surface');
|
20
18
|
|
21
19
|
header {
|
@@ -46,7 +44,7 @@
|
|
46
44
|
}
|
47
45
|
|
48
46
|
&.ax-popup-full {
|
49
|
-
@apply ax-w-screen ax-h-screen;
|
47
|
+
@apply ax-w-screen ax-h-screen ax-max-h-screen;
|
50
48
|
}
|
51
49
|
|
52
50
|
&.ax-fit {
|
@@ -100,6 +98,7 @@
|
|
100
98
|
@media all and (min-width: 425px) and (max-width: 767px) {
|
101
99
|
&.ax-popup-sm {
|
102
100
|
width: 100vw;
|
101
|
+
height: 100vh;
|
103
102
|
max-height: 100vh;
|
104
103
|
}
|
105
104
|
|
@@ -115,6 +114,7 @@
|
|
115
114
|
&.ax-popup-md,
|
116
115
|
&.ax-popup-lg {
|
117
116
|
width: 100vw;
|
117
|
+
height: 100vh;
|
118
118
|
max-height: 100vh;
|
119
119
|
}
|
120
120
|
}
|
package/src/icons/demo.html
CHANGED
@@ -9,10 +9,52 @@
|
|
9
9
|
<link rel="stylesheet" href="style.css"></head>
|
10
10
|
<body>
|
11
11
|
<div class="bgc1 clearfix">
|
12
|
-
<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> acorex-icon <small class="fgc1">(Glyphs:
|
12
|
+
<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> acorex-icon <small class="fgc1">(Glyphs: 30)</small></h1>
|
13
13
|
</div>
|
14
14
|
<div class="clearfix mhl ptl">
|
15
15
|
<h1 class="mvm mtn fgc1">Grid Size: 16</h1>
|
16
|
+
<div class="glyph fs1">
|
17
|
+
<div class="clearfix bshadow0 pbs">
|
18
|
+
<span class="ax-ic-remove"></span>
|
19
|
+
<span class="mls"> ax-ic-remove</span>
|
20
|
+
</div>
|
21
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
22
|
+
<input type="text" readonly value="e91b" class="unit size1of2" />
|
23
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
24
|
+
</fieldset>
|
25
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
26
|
+
<span class="unit pvs fgc1">liga: </span>
|
27
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
<div class="glyph fs1">
|
31
|
+
<div class="clearfix bshadow0 pbs">
|
32
|
+
<span class="ax-ic-plus"></span>
|
33
|
+
<span class="mls"> ax-ic-plus</span>
|
34
|
+
</div>
|
35
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
36
|
+
<input type="text" readonly value="e91c" class="unit size1of2" />
|
37
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
38
|
+
</fieldset>
|
39
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
40
|
+
<span class="unit pvs fgc1">liga: </span>
|
41
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
42
|
+
</div>
|
43
|
+
</div>
|
44
|
+
<div class="glyph fs1">
|
45
|
+
<div class="clearfix bshadow0 pbs">
|
46
|
+
<span class="ax-ic-magnify"></span>
|
47
|
+
<span class="mls"> ax-ic-magnify</span>
|
48
|
+
</div>
|
49
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
50
|
+
<input type="text" readonly value="e91d" class="unit size1of2" />
|
51
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
52
|
+
</fieldset>
|
53
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
54
|
+
<span class="unit pvs fgc1">liga: </span>
|
55
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
56
|
+
</div>
|
57
|
+
</div>
|
16
58
|
<div class="glyph fs1">
|
17
59
|
<div class="clearfix bshadow0 pbs">
|
18
60
|
<span class="ax-ic-arrow-circle"></span>
|
@@ -34,4 +34,7 @@
|
|
34
34
|
<glyph unicode="" glyph-name="fullscreen" d="M896 490.667v341.333h-341.333l140.373-140.373-426.667-426.667-140.373 140.373v-341.333h341.333l-140.373 140.373 426.667 426.667z" />
|
35
35
|
<glyph unicode="" glyph-name="close-fullscreen" d="M938.667 814.507l-225.707-225.707 140.373-140.8h-341.333v341.333l140.373-140.373 226.133 225.707 60.16-60.16zM145.493 21.333l225.707 225.707 140.8-140.373v341.333h-341.333l140.373-140.373-225.707-226.133 60.16-60.16z" />
|
36
36
|
<glyph unicode="" glyph-name="fold" d="M316.16 166.827l60.587-60.16 135.253 135.253 135.253-135.253 60.16 60.16-195.413 195.84-195.84-195.84zM707.84 729.173l-60.587 60.16-135.253-135.253-135.253 135.253-60.587-60.16 195.84-195.84 195.84 195.84z" />
|
37
|
+
<glyph unicode="" glyph-name="remove" d="M810.667 405.333h-597.333v85.333h597.333v-85.333z" />
|
38
|
+
<glyph unicode="" glyph-name="plus" d="M810.667 405.333h-256v-256h-85.333v256h-256v85.333h256v256h85.333v-256h256v-85.333z" />
|
39
|
+
<glyph unicode="" glyph-name="magnify" d="M661.333 362.667h-33.707l-11.947 11.52c41.813 48.64 66.987 111.787 66.987 180.48 0 153.173-124.16 277.333-277.333 277.333s-277.333-124.16-277.333-277.333 124.16-277.333 277.333-277.333c68.693 0 131.84 25.173 180.48 66.987l11.52-11.947v-33.707l213.333-212.907 63.573 63.573-212.907 213.333zM405.333 362.667c-106.24 0-192 85.76-192 192s85.76 192 192 192 192-85.76 192-192-85.76-192-192-192z" />
|
37
40
|
</font></defs></svg>
|
Binary file
|
Binary file
|
package/src/icons/selection.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M853.333 512c0 188.16-153.173 341.333-341.333 341.333s-341.333-153.173-341.333-341.333 153.173-341.333 341.333-341.333 341.333 153.173 341.333 341.333zM938.667 512c0-235.52-191.147-426.667-426.667-426.667s-426.667 191.147-426.667 426.667c0 235.52 191.147 426.667 426.667 426.667s426.667-191.147 426.667-426.667v0zM512 554.667h170.667v-85.333h-170.667v-128l-170.667 170.667 170.667 170.667v-128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-circle"]},"attrs":[{}],"properties":{"order":29,"id":38,"name":"arrow-circle","prevSize":32,"code":59665},"setIdx":0,"setId":1,"iconIdx":0},{"icon":{"paths":["M85.333 512c0 235.52 191.147 426.667 426.667 426.667s426.667-191.147 426.667-426.667c0-235.52-191.147-426.667-426.667-426.667s-426.667 191.147-426.667 426.667zM512 469.333h170.667v85.333h-170.667v128l-170.667-170.667 170.667-170.667v128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-circle-fill"]},"attrs":[{}],"properties":{"order":30,"id":37,"name":"arrow-circle-fill","prevSize":32,"code":59666},"setIdx":0,"setId":1,"iconIdx":1},{"icon":{"paths":["M853.333 469.333h-519.253l238.507-238.507-60.587-60.16-341.333 341.333 341.333 341.333 60.16-60.16-238.080-238.507h519.253v-85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-half"]},"attrs":[{}],"properties":{"order":31,"id":36,"name":"arrow-half","prevSize":32,"code":59667},"setIdx":0,"setId":1,"iconIdx":2},{"icon":{"paths":["M597.333 298.667l-213.333 213.333 213.333 213.333v-426.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow-fill"]},"attrs":[{}],"properties":{"order":32,"id":35,"name":"arrow-fill","prevSize":32,"code":59668},"setIdx":0,"setId":1,"iconIdx":3},{"icon":{"paths":["M896 469.333h-604.587l152.747-153.173-60.16-60.16-256 256 256 256 60.16-60.16-152.747-153.173h604.587z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["arrow"]},"attrs":[{}],"properties":{"order":33,"id":34,"name":"arrow","prevSize":32,"code":59669},"setIdx":0,"setId":1,"iconIdx":4},{"icon":{"paths":["M512 248.747l135.253 135.253 60.16-60.16-195.413-195.84-195.84 195.84 60.587 60.16 135.253-135.253zM512 775.253l-135.253-135.253-60.16 60.16 195.413 195.84 195.84-195.84-60.587-60.16-135.253 135.253z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["unfold"]},"attrs":[{}],"properties":{"order":34,"id":33,"name":"unfold","prevSize":32,"code":59670},"setIdx":0,"setId":1,"iconIdx":5},{"icon":{"paths":["M853.333 512l-60.16-60.16-238.507 238.080v-519.253h-85.333v519.253l-238.080-238.507-60.587 60.587 341.333 341.333 341.333-341.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["half-arrow"]},"attrs":[{}],"properties":{"order":35,"id":32,"name":"half-arrow","prevSize":32,"code":59671},"setIdx":0,"setId":1,"iconIdx":6},{"icon":{"paths":["M896 469.333v-341.333h-341.333l140.373 140.373-426.667 426.667-140.373-140.373v341.333h341.333l-140.373-140.373 426.667-426.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["fullscreen"]},"attrs":[{}],"properties":{"order":36,"id":31,"name":"fullscreen","prevSize":32,"code":59672},"setIdx":0,"setId":1,"iconIdx":7},{"icon":{"paths":["M938.667 145.493l-225.707 225.707 140.373 140.8h-341.333v-341.333l140.373 140.373 226.133-225.707 60.16 60.16zM145.493 938.667l225.707-225.707 140.8 140.373v-341.333h-341.333l140.373 140.373-225.707 226.133 60.16 60.16z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["close-fullscreen"]},"attrs":[{}],"properties":{"order":37,"id":30,"name":"close-fullscreen","prevSize":32,"code":59673},"setIdx":0,"setId":1,"iconIdx":8},{"icon":{"paths":["M316.16 793.173l60.587 60.16 135.253-135.253 135.253 135.253 60.16-60.16-195.413-195.84-195.84 195.84zM707.84 230.827l-60.587-60.16-135.253 135.253-135.253-135.253-60.587 60.16 195.84 195.84 195.84-195.84z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["fold"]},"attrs":[{}],"properties":{"order":38,"id":29,"name":"fold","prevSize":32,"code":59674},"setIdx":0,"setId":1,"iconIdx":9},{"icon":{"paths":["M512 256c161.707 0 305.92 90.88 376.32 234.667-70.4 143.787-214.613 234.667-376.32 234.667s-305.92-90.88-376.32-234.667c70.4-143.787 214.613-234.667 376.32-234.667zM512 170.667c-213.333 0-395.52 132.693-469.333 320 73.813 187.307 256 320 469.333 320s395.52-132.693 469.333-320c-73.813-187.307-256-320-469.333-320zM512 384c58.88 0 106.667 47.787 106.667 106.667s-47.787 106.667-106.667 106.667-106.667-47.787-106.667-106.667 47.787-106.667 106.667-106.667zM512 298.667c-105.813 0-192 86.187-192 192s86.187 192 192 192 192-86.187 192-192-86.187-192-192-192z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["eye"]},"attrs":[{}],"properties":{"order":27,"id":28,"name":"eye","prevSize":32,"code":59649},"setIdx":0,"setId":1,"iconIdx":10},{"icon":{"paths":["M512 256c161.707 0 305.92 90.88 376.32 234.667-25.173 52.053-60.587 96.853-102.827 133.12l60.16 60.16c59.307-52.48 106.24-118.187 135.68-193.28-73.813-187.307-256-320-469.333-320-54.187 0-106.24 8.533-155.307 24.32l70.4 70.4c27.733-5.547 55.893-9.387 84.907-9.387zM466.347 304.64l88.32 88.32c24.32 10.667 43.947 30.293 54.613 54.613l88.32 88.32c3.413-14.507 5.973-29.867 5.973-45.653 0.427-105.813-85.76-191.573-191.573-191.573-15.787 0-30.72 2.133-45.653 5.973zM85.76 165.12l114.347 114.347c-69.547 54.613-124.587 127.147-157.44 211.2 73.813 187.307 256 320 469.333 320 64.853 0 127.147-12.373 184.32-34.987l145.92 145.92 60.16-60.16-756.48-756.907-60.16 60.587zM405.76 485.12l111.36 111.36c-1.707 0.427-3.413 0.853-5.12 0.853-58.88 0-106.667-47.787-106.667-106.667 0-2.133 0.427-3.413 0.427-5.547zM260.693 340.053l74.667 74.667c-9.813 23.467-15.36 49.067-15.36 75.947 0 105.813 86.187 192 192 192 26.88 0 52.48-5.547 75.52-15.36l41.813 41.813c-37.547 10.24-76.8 16.213-117.333 16.213-161.707 0-305.92-90.88-376.32-234.667 29.867-61.013 73.387-111.36 125.013-150.613z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["eye-off"]},"attrs":[{}],"properties":{"order":10,"id":27,"name":"eye-off","prevSize":32,"code":59650},"setIdx":0,"setId":1,"iconIdx":11},{"icon":{"paths":["M853.333 128h-42.667v-85.333h-85.333v85.333h-426.667v-85.333h-85.333v85.333h-42.667c-46.933 0-85.333 38.4-85.333 85.333v682.667c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-682.667c0-46.933-38.4-85.333-85.333-85.333zM853.333 896h-682.667v-554.667h682.667v554.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["calendar"]},"attrs":[{}],"properties":{"order":11,"id":26,"name":"calendar","prevSize":32,"code":59651},"setIdx":0,"setId":1,"iconIdx":12},{"icon":{"paths":["M511.573 85.333c-235.52 0-426.24 191.147-426.24 426.667s190.72 426.667 426.24 426.667c235.947 0 427.093-191.147 427.093-426.667s-191.147-426.667-427.093-426.667zM512 853.333c-188.587 0-341.333-152.747-341.333-341.333s152.747-341.333 341.333-341.333 341.333 152.747 341.333 341.333-152.747 341.333-341.333 341.333z","M533.333 298.667h-64v256l224 134.4 32-52.48-192-113.92z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["time"]},"attrs":[{},{}],"properties":{"order":25,"id":25,"name":"time","prevSize":32,"code":59648},"setIdx":0,"setId":1,"iconIdx":13},{"icon":{"paths":["M384 689.92l-177.92-177.92-60.587 60.16 238.507 238.507 512-512-60.16-60.16z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["check"]},"attrs":[{}],"properties":{"order":12,"id":24,"name":"check","prevSize":32,"code":59652},"setIdx":0,"setId":1,"iconIdx":14},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM426.667 725.333l-213.333-213.333 60.16-60.16 153.173 152.747 323.84-323.84 60.16 60.587-384 384z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["check-filled"]},"attrs":[{}],"properties":{"order":13,"id":23,"name":"check-filled","prevSize":32,"code":59653},"setIdx":0,"setId":1,"iconIdx":15},{"icon":{"paths":["M657.493 316.16l-60.16-60.16-256 256 256 256 60.16-60.16-195.413-195.84 195.413-195.84z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["chevron"]},"attrs":[{}],"properties":{"order":14,"id":22,"name":"chevron","prevSize":32,"code":59654},"setIdx":0,"setId":1,"iconIdx":16},{"icon":{"paths":["M810.667 273.493l-60.16-60.16-238.507 238.507-238.507-238.507-60.16 60.16 238.507 238.507-238.507 238.507 60.16 60.16 238.507-238.507 238.507 238.507 60.16-60.16-238.507-238.507 238.507-238.507z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["close"]},"attrs":[{}],"properties":{"order":15,"id":21,"name":"close","prevSize":32,"code":59655},"setIdx":0,"setId":1,"iconIdx":17},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM554.667 725.333h-85.333v-85.333h85.333v85.333zM554.667 554.667h-85.333v-256h85.333v256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["error-filled"]},"attrs":[{}],"properties":{"order":16,"id":19,"name":"error-filled","prevSize":32,"code":59656},"setIdx":0,"setId":1,"iconIdx":18},{"icon":{"paths":["M785.493 707.84l-195.84-195.84 195.84-195.84-60.16-60.16-256 256 256 256zM256 256h85.333v512h-85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["chevron-page"]},"attrs":[{}],"properties":{"order":17,"id":16,"name":"chevron-page","prevSize":32,"code":59657},"setIdx":0,"setId":1,"iconIdx":19},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM554.667 725.333h-85.333v-256h85.333v256zM554.667 384h-85.333v-85.333h85.333v85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["info-filled"]},"attrs":[{}],"properties":{"order":18,"id":15,"name":"info-filled","prevSize":32,"code":59658},"setIdx":0,"setId":1,"iconIdx":20},{"icon":{"paths":["M750.507 768l60.16-60.16-195.413-195.84 195.413-195.84-60.16-60.16-256 256z","M469.333 768l60.16-60.16-195.413-195.84 195.413-195.84-60.16-60.16-256 256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["chevron-double"]},"attrs":[{},{}],"properties":{"order":19,"id":13,"name":"chevron-double","prevSize":32,"code":59659},"setIdx":0,"setId":1,"iconIdx":21},{"icon":{"paths":["M128 768h768v-85.333h-768v85.333zM128 554.667h768v-85.333h-768v85.333zM128 256v85.333h768v-85.333h-768z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["menu"]},"attrs":[{}],"properties":{"order":20,"id":8,"name":"menu","prevSize":32,"code":59660},"setIdx":0,"setId":1,"iconIdx":22},{"icon":{"paths":["M512 341.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333-85.333 38.4-85.333 85.333 38.4 85.333 85.333 85.333zM512 426.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM512 682.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["more"]},"attrs":[{}],"properties":{"order":21,"id":7,"name":"more","prevSize":32,"code":59661},"setIdx":0,"setId":1,"iconIdx":23},{"icon":{"paths":["M42.667 896h938.667l-469.333-810.667-469.333 810.667zM554.667 768h-85.333v-85.333h85.333v85.333zM554.667 597.333h-85.333v-170.667h85.333v170.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["warning-filled"]},"attrs":[{}],"properties":{"order":22,"id":3,"name":"warning-filled","prevSize":32,"code":59662},"setIdx":0,"setId":1,"iconIdx":24},{"icon":{"paths":["M256 256h85.333v512h-85.333zM405.333 512l362.667 256v-512z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["chevron-page-filled"]},"attrs":[{}],"properties":{"order":23,"id":1,"name":"chevron-page-filled","prevSize":32,"code":59663},"setIdx":0,"setId":1,"iconIdx":25},{"icon":{"paths":["M810.667 128h-42.667v-85.333h-85.333v85.333h-341.333v-85.333h-85.333v85.333h-42.667c-47.36 0-85.333 38.4-85.333 85.333v597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM810.667 810.667h-597.333v-426.667h597.333v426.667zM810.667 298.667h-597.333v-85.333h597.333v85.333zM298.667 469.333h213.333v213.333h-213.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["calendar-today"]},"attrs":[{}],"properties":{"order":24,"id":0,"name":"calendar-today","prevSize":32,"code":59664},"setIdx":0,"setId":1,"iconIdx":26}],"height":1024,"metadata":{"name":"acorex-icon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"ax-ic-","metadata":{"fontFamily":"acorex-icon","majorVersion":5,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"noie8":true,"ie7":false,"showSelector":true,"showMetrics":true,"showMetadata":true,"showVersion":true,"selector":"","classSelector":".icon","cssVars":true,"cssVarsFormat":"scss"},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16,"showGrid":false,"showLiga":false}}
|
1
|
+
{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M810.667 554.667h-597.333v-85.333h597.333v85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["remove"]},"attrs":[{}],"properties":{"order":4,"id":29,"name":"remove","prevSize":32,"code":59675},"setIdx":0,"setId":2,"iconIdx":0},{"icon":{"paths":["M810.667 554.667h-256v256h-85.333v-256h-256v-85.333h256v-256h85.333v256h256v85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["plus"]},"attrs":[{}],"properties":{"order":3,"id":28,"name":"plus","prevSize":32,"code":59676},"setIdx":0,"setId":2,"iconIdx":1},{"icon":{"paths":["M661.333 597.333h-33.707l-11.947-11.52c41.813-48.64 66.987-111.787 66.987-180.48 0-153.173-124.16-277.333-277.333-277.333s-277.333 124.16-277.333 277.333 124.16 277.333 277.333 277.333c68.693 0 131.84-25.173 180.48-66.987l11.52 11.947v33.707l213.333 212.907 63.573-63.573-212.907-213.333zM405.333 597.333c-106.24 0-192-85.76-192-192s85.76-192 192-192 192 85.76 192 192-85.76 192-192 192z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["search"]},"attrs":[{}],"properties":{"order":2,"id":27,"name":"magnify","prevSize":32,"code":59677},"setIdx":0,"setId":2,"iconIdx":2},{"icon":{"paths":["M853.333 512c0 188.16-153.173 341.333-341.333 341.333s-341.333-153.173-341.333-341.333 153.173-341.333 341.333-341.333 341.333 153.173 341.333 341.333zM938.667 512c0-235.52-191.147-426.667-426.667-426.667s-426.667 191.147-426.667 426.667c0 235.52 191.147 426.667 426.667 426.667s426.667-191.147 426.667-426.667v0zM512 554.667h170.667v-85.333h-170.667v-128l-170.667 170.667 170.667 170.667v-128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-circle"],"grid":16},"attrs":[{}],"properties":{"order":29,"id":0,"name":"arrow-circle","prevSize":32,"code":59665},"setIdx":0,"setId":2,"iconIdx":3},{"icon":{"paths":["M85.333 512c0 235.52 191.147 426.667 426.667 426.667s426.667-191.147 426.667-426.667c0-235.52-191.147-426.667-426.667-426.667s-426.667 191.147-426.667 426.667zM512 469.333h170.667v85.333h-170.667v128l-170.667-170.667 170.667-170.667v128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-circle-fill"],"grid":16},"attrs":[{}],"properties":{"order":30,"id":1,"name":"arrow-circle-fill","prevSize":32,"code":59666},"setIdx":0,"setId":2,"iconIdx":4},{"icon":{"paths":["M853.333 469.333h-519.253l238.507-238.507-60.587-60.16-341.333 341.333 341.333 341.333 60.16-60.16-238.080-238.507h519.253v-85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-half"],"grid":16},"attrs":[{}],"properties":{"order":31,"id":2,"name":"arrow-half","prevSize":32,"code":59667},"setIdx":0,"setId":2,"iconIdx":5},{"icon":{"paths":["M597.333 298.667l-213.333 213.333 213.333 213.333v-426.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-fill"],"grid":16},"attrs":[{}],"properties":{"order":32,"id":3,"name":"arrow-fill","prevSize":32,"code":59668},"setIdx":0,"setId":2,"iconIdx":6},{"icon":{"paths":["M896 469.333h-604.587l152.747-153.173-60.16-60.16-256 256 256 256 60.16-60.16-152.747-153.173h604.587z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow"],"grid":16},"attrs":[{}],"properties":{"order":33,"id":4,"name":"arrow","prevSize":32,"code":59669},"setIdx":0,"setId":2,"iconIdx":7},{"icon":{"paths":["M512 248.747l135.253 135.253 60.16-60.16-195.413-195.84-195.84 195.84 60.587 60.16 135.253-135.253zM512 775.253l-135.253-135.253-60.16 60.16 195.413 195.84 195.84-195.84-60.587-60.16-135.253 135.253z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["unfold"],"grid":16},"attrs":[{}],"properties":{"order":34,"id":5,"name":"unfold","prevSize":32,"code":59670},"setIdx":0,"setId":2,"iconIdx":8},{"icon":{"paths":["M853.333 512l-60.16-60.16-238.507 238.080v-519.253h-85.333v519.253l-238.080-238.507-60.587 60.587 341.333 341.333 341.333-341.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["half-arrow"],"grid":16},"attrs":[{}],"properties":{"order":35,"id":6,"name":"half-arrow","prevSize":32,"code":59671},"setIdx":0,"setId":2,"iconIdx":9},{"icon":{"paths":["M896 469.333v-341.333h-341.333l140.373 140.373-426.667 426.667-140.373-140.373v341.333h341.333l-140.373-140.373 426.667-426.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["fullscreen"],"grid":16},"attrs":[{}],"properties":{"order":36,"id":7,"name":"fullscreen","prevSize":32,"code":59672},"setIdx":0,"setId":2,"iconIdx":10},{"icon":{"paths":["M938.667 145.493l-225.707 225.707 140.373 140.8h-341.333v-341.333l140.373 140.373 226.133-225.707 60.16 60.16zM145.493 938.667l225.707-225.707 140.8 140.373v-341.333h-341.333l140.373 140.373-225.707 226.133 60.16 60.16z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["close-fullscreen"],"grid":16},"attrs":[{}],"properties":{"order":37,"id":8,"name":"close-fullscreen","prevSize":32,"code":59673},"setIdx":0,"setId":2,"iconIdx":11},{"icon":{"paths":["M316.16 793.173l60.587 60.16 135.253-135.253 135.253 135.253 60.16-60.16-195.413-195.84-195.84 195.84zM707.84 230.827l-60.587-60.16-135.253 135.253-135.253-135.253-60.587 60.16 195.84 195.84 195.84-195.84z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["fold"],"grid":16},"attrs":[{}],"properties":{"order":38,"id":9,"name":"fold","prevSize":32,"code":59674},"setIdx":0,"setId":2,"iconIdx":12},{"icon":{"paths":["M512 256c161.707 0 305.92 90.88 376.32 234.667-70.4 143.787-214.613 234.667-376.32 234.667s-305.92-90.88-376.32-234.667c70.4-143.787 214.613-234.667 376.32-234.667zM512 170.667c-213.333 0-395.52 132.693-469.333 320 73.813 187.307 256 320 469.333 320s395.52-132.693 469.333-320c-73.813-187.307-256-320-469.333-320zM512 384c58.88 0 106.667 47.787 106.667 106.667s-47.787 106.667-106.667 106.667-106.667-47.787-106.667-106.667 47.787-106.667 106.667-106.667zM512 298.667c-105.813 0-192 86.187-192 192s86.187 192 192 192 192-86.187 192-192-86.187-192-192-192z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["eye"],"grid":16},"attrs":[{}],"properties":{"order":27,"id":10,"name":"eye","prevSize":32,"code":59649},"setIdx":0,"setId":2,"iconIdx":13},{"icon":{"paths":["M512 256c161.707 0 305.92 90.88 376.32 234.667-25.173 52.053-60.587 96.853-102.827 133.12l60.16 60.16c59.307-52.48 106.24-118.187 135.68-193.28-73.813-187.307-256-320-469.333-320-54.187 0-106.24 8.533-155.307 24.32l70.4 70.4c27.733-5.547 55.893-9.387 84.907-9.387zM466.347 304.64l88.32 88.32c24.32 10.667 43.947 30.293 54.613 54.613l88.32 88.32c3.413-14.507 5.973-29.867 5.973-45.653 0.427-105.813-85.76-191.573-191.573-191.573-15.787 0-30.72 2.133-45.653 5.973zM85.76 165.12l114.347 114.347c-69.547 54.613-124.587 127.147-157.44 211.2 73.813 187.307 256 320 469.333 320 64.853 0 127.147-12.373 184.32-34.987l145.92 145.92 60.16-60.16-756.48-756.907-60.16 60.587zM405.76 485.12l111.36 111.36c-1.707 0.427-3.413 0.853-5.12 0.853-58.88 0-106.667-47.787-106.667-106.667 0-2.133 0.427-3.413 0.427-5.547zM260.693 340.053l74.667 74.667c-9.813 23.467-15.36 49.067-15.36 75.947 0 105.813 86.187 192 192 192 26.88 0 52.48-5.547 75.52-15.36l41.813 41.813c-37.547 10.24-76.8 16.213-117.333 16.213-161.707 0-305.92-90.88-376.32-234.667 29.867-61.013 73.387-111.36 125.013-150.613z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["eye-off"],"grid":16},"attrs":[{}],"properties":{"order":10,"id":11,"name":"eye-off","prevSize":32,"code":59650},"setIdx":0,"setId":2,"iconIdx":14},{"icon":{"paths":["M853.333 128h-42.667v-85.333h-85.333v85.333h-426.667v-85.333h-85.333v85.333h-42.667c-46.933 0-85.333 38.4-85.333 85.333v682.667c0 46.933 38.4 85.333 85.333 85.333h682.667c46.933 0 85.333-38.4 85.333-85.333v-682.667c0-46.933-38.4-85.333-85.333-85.333zM853.333 896h-682.667v-554.667h682.667v554.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["calendar"],"grid":16},"attrs":[{}],"properties":{"order":11,"id":12,"name":"calendar","prevSize":32,"code":59651},"setIdx":0,"setId":2,"iconIdx":15},{"icon":{"paths":["M511.573 85.333c-235.52 0-426.24 191.147-426.24 426.667s190.72 426.667 426.24 426.667c235.947 0 427.093-191.147 427.093-426.667s-191.147-426.667-427.093-426.667zM512 853.333c-188.587 0-341.333-152.747-341.333-341.333s152.747-341.333 341.333-341.333 341.333 152.747 341.333 341.333-152.747 341.333-341.333 341.333z","M533.333 298.667h-64v256l224 134.4 32-52.48-192-113.92z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["time"],"grid":16},"attrs":[{},{}],"properties":{"order":25,"id":13,"name":"time","prevSize":32,"code":59648},"setIdx":0,"setId":2,"iconIdx":16},{"icon":{"paths":["M384 689.92l-177.92-177.92-60.587 60.16 238.507 238.507 512-512-60.16-60.16z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["check"],"grid":16},"attrs":[{}],"properties":{"order":12,"id":14,"name":"check","prevSize":32,"code":59652},"setIdx":0,"setId":2,"iconIdx":17},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM426.667 725.333l-213.333-213.333 60.16-60.16 153.173 152.747 323.84-323.84 60.16 60.587-384 384z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["check-filled"],"grid":16},"attrs":[{}],"properties":{"order":13,"id":15,"name":"check-filled","prevSize":32,"code":59653},"setIdx":0,"setId":2,"iconIdx":18},{"icon":{"paths":["M657.493 316.16l-60.16-60.16-256 256 256 256 60.16-60.16-195.413-195.84 195.413-195.84z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron"],"grid":16},"attrs":[{}],"properties":{"order":14,"id":16,"name":"chevron","prevSize":32,"code":59654},"setIdx":0,"setId":2,"iconIdx":19},{"icon":{"paths":["M810.667 273.493l-60.16-60.16-238.507 238.507-238.507-238.507-60.16 60.16 238.507 238.507-238.507 238.507 60.16 60.16 238.507-238.507 238.507 238.507 60.16-60.16-238.507-238.507 238.507-238.507z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["close"],"grid":16},"attrs":[{}],"properties":{"order":15,"id":17,"name":"close","prevSize":32,"code":59655},"setIdx":0,"setId":2,"iconIdx":20},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM554.667 725.333h-85.333v-85.333h85.333v85.333zM554.667 554.667h-85.333v-256h85.333v256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["error-filled"],"grid":16},"attrs":[{}],"properties":{"order":16,"id":18,"name":"error-filled","prevSize":32,"code":59656},"setIdx":0,"setId":2,"iconIdx":21},{"icon":{"paths":["M785.493 707.84l-195.84-195.84 195.84-195.84-60.16-60.16-256 256 256 256zM256 256h85.333v512h-85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-page"],"grid":16},"attrs":[{}],"properties":{"order":17,"id":19,"name":"chevron-page","prevSize":32,"code":59657},"setIdx":0,"setId":2,"iconIdx":22},{"icon":{"paths":["M512 85.333c-235.52 0-426.667 191.147-426.667 426.667s191.147 426.667 426.667 426.667 426.667-191.147 426.667-426.667-191.147-426.667-426.667-426.667zM554.667 725.333h-85.333v-256h85.333v256zM554.667 384h-85.333v-85.333h85.333v85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["info-filled"],"grid":16},"attrs":[{}],"properties":{"order":18,"id":20,"name":"info-filled","prevSize":32,"code":59658},"setIdx":0,"setId":2,"iconIdx":23},{"icon":{"paths":["M750.507 768l60.16-60.16-195.413-195.84 195.413-195.84-60.16-60.16-256 256z","M469.333 768l60.16-60.16-195.413-195.84 195.413-195.84-60.16-60.16-256 256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-double"],"grid":16},"attrs":[{},{}],"properties":{"order":19,"id":21,"name":"chevron-double","prevSize":32,"code":59659},"setIdx":0,"setId":2,"iconIdx":24},{"icon":{"paths":["M128 768h768v-85.333h-768v85.333zM128 554.667h768v-85.333h-768v85.333zM128 256v85.333h768v-85.333h-768z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["menu"],"grid":16},"attrs":[{}],"properties":{"order":20,"id":22,"name":"menu","prevSize":32,"code":59660},"setIdx":0,"setId":2,"iconIdx":25},{"icon":{"paths":["M512 341.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333-85.333 38.4-85.333 85.333 38.4 85.333 85.333 85.333zM512 426.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM512 682.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["more"],"grid":16},"attrs":[{}],"properties":{"order":21,"id":23,"name":"more","prevSize":32,"code":59661},"setIdx":0,"setId":2,"iconIdx":26},{"icon":{"paths":["M42.667 896h938.667l-469.333-810.667-469.333 810.667zM554.667 768h-85.333v-85.333h85.333v85.333zM554.667 597.333h-85.333v-170.667h85.333v170.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["warning-filled"],"grid":16},"attrs":[{}],"properties":{"order":22,"id":24,"name":"warning-filled","prevSize":32,"code":59662},"setIdx":0,"setId":2,"iconIdx":27},{"icon":{"paths":["M256 256h85.333v512h-85.333zM405.333 512l362.667 256v-512z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-page-filled"],"grid":16},"attrs":[{}],"properties":{"order":23,"id":25,"name":"chevron-page-filled","prevSize":32,"code":59663},"setIdx":0,"setId":2,"iconIdx":28},{"icon":{"paths":["M810.667 128h-42.667v-85.333h-85.333v85.333h-341.333v-85.333h-85.333v85.333h-42.667c-47.36 0-85.333 38.4-85.333 85.333v597.333c0 46.933 37.973 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM810.667 810.667h-597.333v-426.667h597.333v426.667zM810.667 298.667h-597.333v-85.333h597.333v85.333zM298.667 469.333h213.333v213.333h-213.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["calendar-today"],"grid":16},"attrs":[{}],"properties":{"order":24,"id":26,"name":"calendar-today","prevSize":32,"code":59664},"setIdx":0,"setId":2,"iconIdx":29}],"height":1024,"metadata":{"name":"acorex-icon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"ax-ic-","metadata":{"fontFamily":"acorex-icon","majorVersion":5,"minorVersion":29},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"noie8":true,"ie7":false,"showSelector":true,"showMetrics":true,"showMetadata":true,"showVersion":true,"selector":"","classSelector":".icon","cssVars":true,"cssVarsFormat":"scss"},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16,"showGrid":false,"showLiga":false}}
|
package/src/icons/style.css
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
@font-face {
|
2
2
|
font-family: 'acorex-icon';
|
3
3
|
src:
|
4
|
-
url('fonts/acorex-icon.ttf?
|
5
|
-
url('fonts/acorex-icon.woff?
|
6
|
-
url('fonts/acorex-icon.svg?
|
4
|
+
url('fonts/acorex-icon.ttf?hruqb5') format('truetype'),
|
5
|
+
url('fonts/acorex-icon.woff?hruqb5') format('woff'),
|
6
|
+
url('fonts/acorex-icon.svg?hruqb5#acorex-icon') format('svg');
|
7
7
|
font-weight: normal;
|
8
8
|
font-style: normal;
|
9
9
|
font-display: block;
|
@@ -24,6 +24,15 @@
|
|
24
24
|
-moz-osx-font-smoothing: grayscale;
|
25
25
|
}
|
26
26
|
|
27
|
+
.ax-ic-remove:before {
|
28
|
+
content: "\e91b";
|
29
|
+
}
|
30
|
+
.ax-ic-plus:before {
|
31
|
+
content: "\e91c";
|
32
|
+
}
|
33
|
+
.ax-ic-magnify:before {
|
34
|
+
content: "\e91d";
|
35
|
+
}
|
27
36
|
.ax-ic-arrow-circle:before {
|
28
37
|
content: "\e911";
|
29
38
|
}
|
package/src/icons/style.scss
CHANGED
@@ -3,9 +3,9 @@
|
|
3
3
|
@font-face {
|
4
4
|
font-family: '#{$icomoon-font-family}';
|
5
5
|
src:
|
6
|
-
url('#{$icomoon-font-path}/#{$icomoon-font-family}.ttf?
|
7
|
-
url('#{$icomoon-font-path}/#{$icomoon-font-family}.woff?
|
8
|
-
url('#{$icomoon-font-path}/#{$icomoon-font-family}.svg?
|
6
|
+
url('#{$icomoon-font-path}/#{$icomoon-font-family}.ttf?hruqb5') format('truetype'),
|
7
|
+
url('#{$icomoon-font-path}/#{$icomoon-font-family}.woff?hruqb5') format('woff'),
|
8
|
+
url('#{$icomoon-font-path}/#{$icomoon-font-family}.svg?hruqb5##{$icomoon-font-family}') format('svg');
|
9
9
|
font-weight: normal;
|
10
10
|
font-style: normal;
|
11
11
|
font-display: block;
|
@@ -26,6 +26,21 @@
|
|
26
26
|
-moz-osx-font-smoothing: grayscale;
|
27
27
|
}
|
28
28
|
|
29
|
+
.ax-ic-remove {
|
30
|
+
&:before {
|
31
|
+
content: $ax-ic-remove;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
.ax-ic-plus {
|
35
|
+
&:before {
|
36
|
+
content: $ax-ic-plus;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
.ax-ic-magnify {
|
40
|
+
&:before {
|
41
|
+
content: $ax-ic-magnify;
|
42
|
+
}
|
43
|
+
}
|
29
44
|
.ax-ic-arrow-circle {
|
30
45
|
&:before {
|
31
46
|
content: $ax-ic-arrow-circle;
|
package/src/icons/variables.scss
CHANGED