@acorex/styles 5.0.51 → 5.0.52

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/styles",
3
- "version": "5.0.51",
3
+ "version": "5.0.52",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,130 @@
1
+ @layer components {
2
+ ax-avatar-group,
3
+ .ax-avatar-group {
4
+ @apply ax-flex;
5
+ ax-avatar{
6
+ @apply ax-border-2 ax-border-white -ax-m-1 dark:ax-border-dark-500;
7
+ }
8
+ }
9
+ ax-avatar,
10
+ .ax-avatar {
11
+ @apply ax-relative ax-flex ax-items-center ax-justify-center ax-w-16 ax-h-16;
12
+ ax-badge{
13
+ @apply ax-absolute -ax-top-1.5 ;
14
+ right: -6px;
15
+ }
16
+ .ax-avatar-container {
17
+ @apply ax-w-full ax-h-full ax-rounded-md;
18
+ .ax-default-avatar,
19
+ .ax-text-avatar,
20
+ .ax-icon-avatar,
21
+ .ax-image-avatar {
22
+ @apply ax-w-full ax-h-full ax-flex ax-items-center ax-justify-center ax-bg-light-200 dark:ax-bg-dark-500 ax-overflow-hidden;
23
+ }
24
+ }
25
+ &.ax-primary-default {
26
+ .ax-default-avatar {
27
+ svg {
28
+ @apply ax-fill-primary-500;
29
+ }
30
+ }
31
+ .ax-text-avatar {
32
+ @apply ax-bg-primary-100 ax-text-primary-500 dark:ax-bg-primary-500 dark:ax-text-primary-fore;
33
+ }
34
+ .ax-icon-avatar {
35
+ @apply ax-bg-primary-500;
36
+ }
37
+ }
38
+ &.ax-secondary-default {
39
+ .ax-default-avatar {
40
+ svg {
41
+ @apply ax-fill-secondary-500;
42
+ }
43
+ }
44
+ .ax-text-avatar {
45
+ @apply ax-bg-secondary-100 ax-text-secondary-500 dark:ax-bg-secondary-500 dark:ax-text-secondary-fore;
46
+ }
47
+ .ax-icon-avatar {
48
+ @apply ax-bg-secondary-500;
49
+ }
50
+ }
51
+ &.ax-success-default {
52
+ .ax-default-avatar {
53
+ svg {
54
+ @apply ax-fill-success-500;
55
+ }
56
+ }
57
+ .ax-text-avatar {
58
+ @apply ax-bg-success-100 ax-text-success-500 dark:ax-bg-success-500 dark:ax-text-success-fore;
59
+ }
60
+ .ax-icon-avatar {
61
+ @apply ax-bg-success-500;
62
+ }
63
+ }
64
+ &.ax-warning-default {
65
+ .ax-default-avatar {
66
+ svg {
67
+ @apply ax-fill-warning-500;
68
+ }
69
+ }
70
+ .ax-text-avatar {
71
+ @apply ax-bg-warning-100 ax-text-warning-500 dark:ax-bg-warning-500 dark:ax-text-warning-fore;
72
+ }
73
+ .ax-icon-avatar {
74
+ @apply ax-bg-warning-500;
75
+ }
76
+ }
77
+ &.ax-danger-default {
78
+ .ax-default-avatar {
79
+ svg {
80
+ @apply ax-fill-danger-500;
81
+ }
82
+ }
83
+ .ax-text-avatar {
84
+ @apply ax-bg-danger-100 ax-text-danger-500 dark:ax-bg-danger-500 dark:ax-text-danger-fore;
85
+ }
86
+ .ax-icon-avatar {
87
+ @apply ax-bg-danger-500;
88
+ }
89
+ }
90
+ &.ax-info-default {
91
+ .ax-default-avatar {
92
+ svg {
93
+ @apply ax-fill-info-500;
94
+ }
95
+ }
96
+ .ax-text-avatar {
97
+ @apply ax-bg-info-100 ax-text-info-500 dark:ax-bg-info-500 dark:ax-text-info-fore;
98
+ }
99
+ .ax-icon-avatar {
100
+ @apply ax-bg-info-500;
101
+ }
102
+ }
103
+ &.ax-light-default {
104
+ .ax-default-avatar {
105
+ svg {
106
+ @apply ax-fill-light-400;
107
+ }
108
+ }
109
+ .ax-text-avatar {
110
+ @apply ax-bg-light-100 ax-text-light-500 dark:ax-bg-light-500 dark:ax-text-light-fore;
111
+ }
112
+ .ax-icon-avatar {
113
+ @apply ax-bg-light-500;
114
+ }
115
+ }
116
+ &.ax-dark-default {
117
+ .ax-default-avatar {
118
+ svg {
119
+ @apply ax-fill-dark-500;
120
+ }
121
+ }
122
+ .ax-text-avatar {
123
+ @apply ax-bg-dark-100 ax-text-dark-500 dark:ax-bg-dark-500 dark:ax-text-dark-fore;
124
+ }
125
+ .ax-icon-avatar {
126
+ @apply ax-bg-dark-500;
127
+ }
128
+ }
129
+ }
130
+ }
@@ -0,0 +1,24 @@
1
+ @layer components {
2
+ ax-breadcrumbs,
3
+ .ax-breadcrumbs {
4
+ @apply ax-flex ax-items-center;
5
+ ax-breadcrumbs-item,
6
+ .ax-breadcrumbs-item {
7
+ ax-prefix {
8
+ @apply ax-pe-2;
9
+ }
10
+ ax-suffix {
11
+ @apply ax-ps-2;
12
+ }
13
+ @apply ax-relative ax-flex ax-items-center ax-ps-3 ax-pe-3.5 ax-text-sm ax-cursor-pointer first:ax-ps-0;
14
+
15
+ &:not(:last-child) {
16
+ &::after {
17
+ @apply ax-absolute ax-text-light-300 dark:ax-opacity-30;
18
+ inset-inline-end:0px;
19
+ content: "/";
20
+ }
21
+ }
22
+ }
23
+ }
24
+ }
@@ -217,14 +217,14 @@
217
217
  }
218
218
  // twotone
219
219
  &.ax-primary-twotone {
220
- @apply ax-bg-primary-50 ax-text-primary-500 ax-border-transparent dark:ax-bg-primary-300 dark:ax-text-primary-700;
220
+ @apply ax-bg-primary-100 ax-text-primary-500 ax-border-transparent dark:ax-bg-primary-300 dark:ax-text-primary-700;
221
221
  &:not(.ax-state-disabled) {
222
222
  &:hover,
223
223
  &:focus {
224
- @apply ax-bg-primary-100 ax-text-primary-700;
224
+ @apply ax-bg-primary-200 ax-text-primary-700;
225
225
  }
226
226
  &:active {
227
- @apply ax-bg-primary-200 ax-text-primary-700;
227
+ @apply ax-bg-primary-300 ax-text-primary-700;
228
228
  }
229
229
  }
230
230
 
@@ -233,14 +233,14 @@
233
233
  }
234
234
  }
235
235
  &.ax-secondary-twotone {
236
- @apply ax-bg-secondary-50 ax-text-secondary-500 ax-border-transparent dark:ax-bg-secondary-300 dark:ax-text-secondary-700;
236
+ @apply ax-bg-secondary-100 ax-text-secondary-500 ax-border-transparent dark:ax-bg-secondary-300 dark:ax-text-secondary-700;
237
237
  &:not(.ax-state-disabled) {
238
238
  &:hover,
239
239
  &:focus {
240
- @apply ax-bg-secondary-100 ax-text-secondary-700;
240
+ @apply ax-bg-secondary-200 ax-text-secondary-700;
241
241
  }
242
242
  &:active {
243
- @apply ax-bg-secondary-200 ax-text-secondary-700;
243
+ @apply ax-bg-secondary-300 ax-text-secondary-700;
244
244
  }
245
245
  }
246
246
 
@@ -249,14 +249,14 @@
249
249
  }
250
250
  }
251
251
  &.ax-warning-twotone {
252
- @apply ax-bg-warning-50 ax-text-warning-500 ax-border-transparent dark:ax-bg-warning-300 dark:ax-text-warning-700;
252
+ @apply ax-bg-warning-100 ax-text-warning-500 ax-border-transparent dark:ax-bg-warning-300 dark:ax-text-warning-700;
253
253
  &:not(.ax-state-disabled) {
254
254
  &:hover,
255
255
  &:focus {
256
- @apply ax-bg-warning-100 ax-text-warning-700;
256
+ @apply ax-bg-warning-200 ax-text-warning-700;
257
257
  }
258
258
  &:active {
259
- @apply ax-bg-warning-200 ax-text-warning-700;
259
+ @apply ax-bg-warning-300 ax-text-warning-700;
260
260
  }
261
261
  }
262
262
 
@@ -265,14 +265,14 @@
265
265
  }
266
266
  }
267
267
  &.ax-danger-twotone {
268
- @apply ax-bg-danger-50 ax-text-danger-500 ax-border-transparent dark:ax-bg-danger-300 dark:ax-text-danger-700;
268
+ @apply ax-bg-danger-100 ax-text-danger-500 ax-border-transparent dark:ax-bg-danger-300 dark:ax-text-danger-700;
269
269
  &:not(.ax-state-disabled) {
270
270
  &:hover,
271
271
  &:focus {
272
- @apply ax-bg-danger-100 ax-text-danger-700;
272
+ @apply ax-bg-danger-200 ax-text-danger-700;
273
273
  }
274
274
  &:active {
275
- @apply ax-bg-danger-200 ax-text-danger-700;
275
+ @apply ax-bg-danger-300 ax-text-danger-700;
276
276
  }
277
277
  }
278
278
 
@@ -281,14 +281,14 @@
281
281
  }
282
282
  }
283
283
  &.ax-success-twotone {
284
- @apply ax-bg-success-50 ax-text-success-500 ax-border-transparent dark:ax-bg-success-300 dark:ax-text-success-700;
284
+ @apply ax-bg-success-100 ax-text-success-500 ax-border-transparent dark:ax-bg-success-300 dark:ax-text-success-700;
285
285
  &:not(.ax-state-disabled) {
286
286
  &:hover,
287
287
  &:focus {
288
- @apply ax-bg-success-100 ax-text-success-700;
288
+ @apply ax-bg-success-200 ax-text-success-700;
289
289
  }
290
290
  &:active {
291
- @apply ax-bg-success-200 ax-text-success-700;
291
+ @apply ax-bg-success-300 ax-text-success-700;
292
292
  }
293
293
  }
294
294
 
@@ -297,14 +297,14 @@
297
297
  }
298
298
  }
299
299
  &.ax-info-twotone {
300
- @apply ax-bg-info-50 ax-text-info-500 ax-border-transparent dark:ax-bg-info-300 dark:ax-text-info-700;
300
+ @apply ax-bg-info-100 ax-text-info-500 ax-border-transparent dark:ax-bg-info-300 dark:ax-text-info-700;
301
301
  &:not(.ax-state-disabled) {
302
302
  &:hover,
303
303
  &:focus {
304
- @apply ax-bg-info-100 ax-text-info-700;
304
+ @apply ax-bg-info-200 ax-text-info-700;
305
305
  }
306
306
  &:active {
307
- @apply ax-bg-info-200 ax-text-info-700;
307
+ @apply ax-bg-info-300 ax-text-info-700;
308
308
  }
309
309
  }
310
310
 
@@ -0,0 +1,14 @@
1
+ @layer components {
2
+ .ax-rating-start {
3
+ &:hover {
4
+ &::before {
5
+ content: "\e91f" !important; // half filled
6
+ }
7
+ }
8
+ &.ax-state-selected{
9
+ &::before {
10
+ content: "\e91e" !important;
11
+ }
12
+ }
13
+ }
14
+ }
@@ -41,7 +41,7 @@
41
41
  }
42
42
  .ax-card-style {
43
43
  .ax-selection-list {
44
- &.ax-vertical {
44
+ &.ax-vertical,&.ax-horizontal {
45
45
  & > div {
46
46
  @apply ax-p-4 ax-border ax-border-light-300 ax-rounded-md ax-shadow-sm;
47
47
  &.ax-state-selected {
@@ -32,7 +32,7 @@
32
32
  @apply ax-block ax-float-left ax-w-full ax-clear-both ax-bg-white ax-px-1.5 ax-py-2.5 ax-box-border last:ax-border-0;
33
33
  &:before {
34
34
  content: attr(data-label);
35
- @apply ax-block;
35
+ @apply ax-block ax-font-bold;
36
36
  }
37
37
  }
38
38
  tr {
@@ -1,5 +1,7 @@
1
1
  @import "./alert";
2
+ @import "./avatar";
2
3
  @import "./badge";
4
+ @import "./breadcrumbs";
3
5
  @import "./button";
4
6
  @import "./calendar";
5
7
  @import "./carousel";
@@ -22,6 +24,7 @@
22
24
  @import "./progress";
23
25
  @import "./radio";
24
26
  @import "./range-slider";
27
+ @import "./rating";
25
28
  @import "./selectbox";
26
29
  @import "./selection-list";
27
30
  @import "./side-menu";
@@ -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:&nbsp;30)</small></h1>
12
+ <h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> acorex-icon <small class="fgc1">(Glyphs:&nbsp;33)</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-star-filled"></span>
19
+ <span class="mls"> ax-ic-star-filled</span>
20
+ </div>
21
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
22
+ <input type="text" readonly value="e91e" class="unit size1of2" />
23
+ <input type="text" maxlength="1" readonly value="&#xe91e;" 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-star-half-filled"></span>
33
+ <span class="mls"> ax-ic-star-half-filled</span>
34
+ </div>
35
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
36
+ <input type="text" readonly value="e91f" class="unit size1of2" />
37
+ <input type="text" maxlength="1" readonly value="&#xe91f;" 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-star-outline"></span>
47
+ <span class="mls"> ax-ic-star-outline</span>
48
+ </div>
49
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
50
+ <input type="text" readonly value="e920" class="unit size1of2" />
51
+ <input type="text" maxlength="1" readonly value="&#xe920;" 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-remove"></span>
Binary file
@@ -37,4 +37,7 @@
37
37
  <glyph unicode="&#xe91b;" glyph-name="remove" d="M810.667 405.333h-597.333v85.333h597.333v-85.333z" />
38
38
  <glyph unicode="&#xe91c;" glyph-name="plus" d="M810.667 405.333h-256v-256h-85.333v256h-256v85.333h256v256h85.333v-256h256v-85.333z" />
39
39
  <glyph unicode="&#xe91d;" 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" />
40
+ <glyph unicode="&#xe91e;" glyph-name="star-filled" d="M512 223.147l263.68-159.147-69.973 299.947 232.96 201.813-306.773 26.027-119.893 282.88-119.893-282.88-306.773-26.027 232.96-201.813-69.973-299.947 263.68 159.147z" />
41
+ <glyph unicode="&#xe91f;" glyph-name="star-half-filled" d="M512 580.693l40.107-132.693h120.32l-96.853-69.12 39.68-128.427-103.253 78.507-103.253-78.507 39.68 128.427-96.853 69.12h120.32l40.107 132.693zM512 874.667l-103.253-341.333h-323.413l263.253-188.16-99.84-323.84 263.253 200.107 263.68-200.107-100.267 323.84 263.253 188.16h-323.413l-103.253 341.333z" />
42
+ <glyph unicode="&#xe920;" glyph-name="star-outline" d="M938.667 565.76l-306.773 26.453-119.893 282.453-119.893-282.88-306.773-26.027 232.96-201.813-69.973-299.947 263.68 159.147 263.68-159.147-69.547 299.947 232.533 201.813zM512 302.933l-160.427-96.853 42.667 182.613-141.653 122.88 186.88 16.213 72.533 171.947 72.96-172.373 186.88-16.213-141.653-122.88 42.667-182.613-160.853 97.28z" />
40
43
  </font></defs></svg>
Binary file
Binary file
@@ -1 +1 @@
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}}
1
+ {"IcoMoonType":"selection","icons":[{"icon":{"paths":["M512 736.853l263.68 159.147-69.973-299.947 232.96-201.813-306.773-26.027-119.893-282.88-119.893 282.88-306.773 26.027 232.96 201.813-69.973 299.947 263.68-159.147z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["star-filled"]},"attrs":[{}],"properties":{"order":3,"id":32,"name":"star-filled","prevSize":32,"code":59678},"setIdx":0,"setId":2,"iconIdx":0},{"icon":{"paths":["M512 379.307l40.107 132.693h120.32l-96.853 69.12 39.68 128.427-103.253-78.507-103.253 78.507 39.68-128.427-96.853-69.12h120.32l40.107-132.693zM512 85.333l-103.253 341.333h-323.413l263.253 188.16-99.84 323.84 263.253-200.107 263.68 200.107-100.267-323.84 263.253-188.16h-323.413l-103.253-341.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["star-half-filled"]},"attrs":[{}],"properties":{"order":4,"id":31,"name":"star-half-filled","prevSize":32,"code":59679},"setIdx":0,"setId":2,"iconIdx":1},{"icon":{"paths":["M938.667 394.24l-306.773-26.453-119.893-282.453-119.893 282.88-306.773 26.027 232.96 201.813-69.973 299.947 263.68-159.147 263.68 159.147-69.547-299.947 232.533-201.813zM512 657.067l-160.427 96.853 42.667-182.613-141.653-122.88 186.88-16.213 72.533-171.947 72.96 172.373 186.88 16.213-141.653 122.88 42.667 182.613-160.853-97.28z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":16,"tags":["star-outline"]},"attrs":[{}],"properties":{"order":6,"id":30,"name":"star-outline","prevSize":32,"code":59680},"setIdx":0,"setId":2,"iconIdx":2},{"icon":{"paths":["M810.667 554.667h-597.333v-85.333h597.333v85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["remove"],"grid":16},"attrs":[{}],"properties":{"order":4,"id":0,"name":"remove","prevSize":32,"code":59675},"setIdx":0,"setId":2,"iconIdx":3},{"icon":{"paths":["M810.667 554.667h-256v256h-85.333v-256h-256v-85.333h256v-256h85.333v256h256v85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["plus"],"grid":16},"attrs":[{}],"properties":{"order":3,"id":1,"name":"plus","prevSize":32,"code":59676},"setIdx":0,"setId":2,"iconIdx":4},{"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,"tags":["search"],"grid":16},"attrs":[{}],"properties":{"order":2,"id":2,"name":"magnify","prevSize":32,"code":59677},"setIdx":0,"setId":2,"iconIdx":5},{"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":3,"name":"arrow-circle","prevSize":32,"code":59665},"setIdx":0,"setId":2,"iconIdx":6},{"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":4,"name":"arrow-circle-fill","prevSize":32,"code":59666},"setIdx":0,"setId":2,"iconIdx":7},{"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":5,"name":"arrow-half","prevSize":32,"code":59667},"setIdx":0,"setId":2,"iconIdx":8},{"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":6,"name":"arrow-fill","prevSize":32,"code":59668},"setIdx":0,"setId":2,"iconIdx":9},{"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":7,"name":"arrow","prevSize":32,"code":59669},"setIdx":0,"setId":2,"iconIdx":10},{"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":8,"name":"unfold","prevSize":32,"code":59670},"setIdx":0,"setId":2,"iconIdx":11},{"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":9,"name":"half-arrow","prevSize":32,"code":59671},"setIdx":0,"setId":2,"iconIdx":12},{"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":10,"name":"fullscreen","prevSize":32,"code":59672},"setIdx":0,"setId":2,"iconIdx":13},{"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":11,"name":"close-fullscreen","prevSize":32,"code":59673},"setIdx":0,"setId":2,"iconIdx":14},{"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":12,"name":"fold","prevSize":32,"code":59674},"setIdx":0,"setId":2,"iconIdx":15},{"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":13,"name":"eye","prevSize":32,"code":59649},"setIdx":0,"setId":2,"iconIdx":16},{"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":14,"name":"eye-off","prevSize":32,"code":59650},"setIdx":0,"setId":2,"iconIdx":17},{"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":15,"name":"calendar","prevSize":32,"code":59651},"setIdx":0,"setId":2,"iconIdx":18},{"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":16,"name":"time","prevSize":32,"code":59648},"setIdx":0,"setId":2,"iconIdx":19},{"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":17,"name":"check","prevSize":32,"code":59652},"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.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":18,"name":"check-filled","prevSize":32,"code":59653},"setIdx":0,"setId":2,"iconIdx":21},{"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":19,"name":"chevron","prevSize":32,"code":59654},"setIdx":0,"setId":2,"iconIdx":22},{"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":20,"name":"close","prevSize":32,"code":59655},"setIdx":0,"setId":2,"iconIdx":23},{"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":21,"name":"error-filled","prevSize":32,"code":59656},"setIdx":0,"setId":2,"iconIdx":24},{"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":22,"name":"chevron-page","prevSize":32,"code":59657},"setIdx":0,"setId":2,"iconIdx":25},{"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":23,"name":"info-filled","prevSize":32,"code":59658},"setIdx":0,"setId":2,"iconIdx":26},{"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":24,"name":"chevron-double","prevSize":32,"code":59659},"setIdx":0,"setId":2,"iconIdx":27},{"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":25,"name":"menu","prevSize":32,"code":59660},"setIdx":0,"setId":2,"iconIdx":28},{"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":26,"name":"more","prevSize":32,"code":59661},"setIdx":0,"setId":2,"iconIdx":29},{"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":27,"name":"warning-filled","prevSize":32,"code":59662},"setIdx":0,"setId":2,"iconIdx":30},{"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":28,"name":"chevron-page-filled","prevSize":32,"code":59663},"setIdx":0,"setId":2,"iconIdx":31},{"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":29,"name":"calendar-today","prevSize":32,"code":59664},"setIdx":0,"setId":2,"iconIdx":32}],"height":1024,"metadata":{"name":"acorex-icon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"ax-ic-","metadata":{"fontFamily":"acorex-icon","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"showSelector":false,"cssVars":true,"cssVarsFormat":"scss"},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16}}
@@ -1,9 +1,10 @@
1
1
  @font-face {
2
2
  font-family: 'acorex-icon';
3
- src:
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');
3
+ src: url('fonts/acorex-icon.eot?ymfsk5');
4
+ src: url('fonts/acorex-icon.eot?ymfsk5#iefix') format('embedded-opentype'),
5
+ url('fonts/acorex-icon.ttf?ymfsk5') format('truetype'),
6
+ url('fonts/acorex-icon.woff?ymfsk5') format('woff'),
7
+ url('fonts/acorex-icon.svg?ymfsk5#acorex-icon') format('svg');
7
8
  font-weight: normal;
8
9
  font-style: normal;
9
10
  font-display: block;
@@ -24,6 +25,15 @@
24
25
  -moz-osx-font-smoothing: grayscale;
25
26
  }
26
27
 
28
+ .ax-ic-star-filled:before {
29
+ content: "\e91e";
30
+ }
31
+ .ax-ic-star-half-filled:before {
32
+ content: "\e91f";
33
+ }
34
+ .ax-ic-star-outline:before {
35
+ content: "\e920";
36
+ }
27
37
  .ax-ic-remove:before {
28
38
  content: "\e91b";
29
39
  }
@@ -2,10 +2,11 @@
2
2
 
3
3
  @font-face {
4
4
  font-family: '#{$icomoon-font-family}';
5
- src:
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');
5
+ src: url('#{$icomoon-font-path}/#{$icomoon-font-family}.eot?ymfsk5');
6
+ src: url('#{$icomoon-font-path}/#{$icomoon-font-family}.eot?ymfsk5#iefix') format('embedded-opentype'),
7
+ url('#{$icomoon-font-path}/#{$icomoon-font-family}.ttf?ymfsk5') format('truetype'),
8
+ url('#{$icomoon-font-path}/#{$icomoon-font-family}.woff?ymfsk5') format('woff'),
9
+ url('#{$icomoon-font-path}/#{$icomoon-font-family}.svg?ymfsk5##{$icomoon-font-family}') format('svg');
9
10
  font-weight: normal;
10
11
  font-style: normal;
11
12
  font-display: block;
@@ -26,6 +27,21 @@
26
27
  -moz-osx-font-smoothing: grayscale;
27
28
  }
28
29
 
30
+ .ax-ic-star-filled {
31
+ &:before {
32
+ content: $ax-ic-star-filled;
33
+ }
34
+ }
35
+ .ax-ic-star-half-filled {
36
+ &:before {
37
+ content: $ax-ic-star-half-filled;
38
+ }
39
+ }
40
+ .ax-ic-star-outline {
41
+ &:before {
42
+ content: $ax-ic-star-outline;
43
+ }
44
+ }
29
45
  .ax-ic-remove {
30
46
  &:before {
31
47
  content: $ax-ic-remove;
@@ -1,6 +1,9 @@
1
1
  $icomoon-font-family: "acorex-icon" !default;
2
2
  $icomoon-font-path: "fonts" !default;
3
3
 
4
+ $ax-ic-star-filled: "\e91e";
5
+ $ax-ic-star-half-filled: "\e91f";
6
+ $ax-ic-star-outline: "\e920";
4
7
  $ax-ic-remove: "\e91b";
5
8
  $ax-ic-plus: "\e91c";
6
9
  $ax-ic-magnify: "\e91d";