@acorex/styles 5.0.50 → 5.0.53
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/base/index.scss +2 -2
- package/src/components/_avatar.scss +130 -0
- package/src/components/_breadcrumbs.scss +24 -0
- package/src/components/_button.scss +18 -18
- package/src/components/_calendar.scss +8 -8
- package/src/components/_collapse.scss +52 -0
- package/src/components/_dialog.scss +9 -7
- package/src/components/_drawer.scss +4 -4
- package/src/components/_popup.scss +5 -42
- package/src/components/_progress.scss +62 -0
- package/src/components/_rating.scss +14 -0
- package/src/components/_result.scss +25 -0
- package/src/components/_selection-list.scss +4 -4
- package/src/components/_table.scss +1 -1
- package/src/components/_tabs.scss +1 -1
- package/src/components/_treeview.scss +2 -2
- package/src/components/index.scss +6 -0
- package/src/icons/demo.html +43 -1
- package/src/icons/fonts/acorex-icon.eot +0 -0
- 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 +14 -4
- package/src/icons/style.scss +20 -4
- package/src/icons/variables.scss +3 -0
- package/src/utility/_mixins.scss +9 -3
package/package.json
CHANGED
package/src/base/index.scss
CHANGED
@@ -6,11 +6,12 @@
|
|
6
6
|
}
|
7
7
|
|
8
8
|
:root {
|
9
|
-
--ax-base:8px;
|
9
|
+
--ax-base: 8px;
|
10
10
|
--ax-base-size: 8px;
|
11
11
|
--ax-base-ratio: 6;
|
12
12
|
--ax-color-default-background: 255, 255, 255;
|
13
13
|
--ax-color-default-color: 107, 114, 128;
|
14
|
+
--ax-overlay-full-width: 93;
|
14
15
|
@include colors($theme-colors);
|
15
16
|
}
|
16
17
|
|
@@ -22,7 +23,6 @@ body {
|
|
22
23
|
font-size: 16px;
|
23
24
|
}
|
24
25
|
|
25
|
-
|
26
26
|
html.ax-dark,
|
27
27
|
html.ax-dark * {
|
28
28
|
--tw-ring-offset-color: #151b24;
|
@@ -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-
|
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-
|
224
|
+
@apply ax-bg-primary-200 ax-text-primary-700;
|
225
225
|
}
|
226
226
|
&:active {
|
227
|
-
@apply ax-bg-primary-
|
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-
|
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-
|
240
|
+
@apply ax-bg-secondary-200 ax-text-secondary-700;
|
241
241
|
}
|
242
242
|
&:active {
|
243
|
-
@apply ax-bg-secondary-
|
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-
|
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-
|
256
|
+
@apply ax-bg-warning-200 ax-text-warning-700;
|
257
257
|
}
|
258
258
|
&:active {
|
259
|
-
@apply ax-bg-warning-
|
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-
|
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-
|
272
|
+
@apply ax-bg-danger-200 ax-text-danger-700;
|
273
273
|
}
|
274
274
|
&:active {
|
275
|
-
@apply ax-bg-danger-
|
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-
|
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-
|
288
|
+
@apply ax-bg-success-200 ax-text-success-700;
|
289
289
|
}
|
290
290
|
&:active {
|
291
|
-
@apply ax-bg-success-
|
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-
|
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-
|
304
|
+
@apply ax-bg-info-200 ax-text-info-700;
|
305
305
|
}
|
306
306
|
&:active {
|
307
|
-
@apply ax-bg-info-
|
307
|
+
@apply ax-bg-info-300 ax-text-info-700;
|
308
308
|
}
|
309
309
|
}
|
310
310
|
|
@@ -9,16 +9,16 @@
|
|
9
9
|
}
|
10
10
|
|
11
11
|
.ax-calendar-header {
|
12
|
-
@apply ax-
|
12
|
+
@apply ax-flex ax-justify-between ax-py-1 ax-px-2 ax-border-b ax-border-light-300 ax-border-solid dark:ax-border-transparent;
|
13
13
|
|
14
|
-
.ax-nav-button {
|
15
|
-
|
16
|
-
}
|
14
|
+
// .ax-nav-button {
|
15
|
+
// @apply ax-col-span-8 ax-justify-start;
|
16
|
+
// }
|
17
17
|
|
18
|
-
.ax-prev-button,
|
19
|
-
.ax-next-button {
|
20
|
-
|
21
|
-
}
|
18
|
+
// .ax-prev-button,
|
19
|
+
// .ax-next-button {
|
20
|
+
// @apply ax-col-span-2 ax-justify-center ax-ms-1;
|
21
|
+
// }
|
22
22
|
}
|
23
23
|
|
24
24
|
.ax-calendar-body {
|
@@ -0,0 +1,52 @@
|
|
1
|
+
@layer components {
|
2
|
+
ax-collpase,
|
3
|
+
.ax-collapse {
|
4
|
+
@apply ax-border ax-border-light-200 ax-block ax-text-sm ax-rounded ax-overflow-hidden;
|
5
|
+
|
6
|
+
.ax-collapse-header {
|
7
|
+
@apply ax-cursor-pointer ax-select-none;
|
8
|
+
|
9
|
+
&.ax-state-collapsed {
|
10
|
+
.ax-collapse-header-container {
|
11
|
+
@apply ax-border-b-0;
|
12
|
+
.ax-collapse-arrow {
|
13
|
+
@apply -ax-rotate-90;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
.ax-collapse-custom-header-container{
|
17
|
+
@apply ax-border-b-0;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
.ax-collapse-custom-header-container{
|
21
|
+
@apply ax-bg-light-50 ax-border-b ax-border-light-200;
|
22
|
+
}
|
23
|
+
.ax-collapse-header-container {
|
24
|
+
@apply ax-flex ax-justify-between ax-px-3 ax-py-1.5 ax-bg-light-50 ax-border-b ax-border-light-200;
|
25
|
+
.ax-collapse-arrow {
|
26
|
+
@apply ax-inline-block ax-text-xl ax-me-2 ax-rotate-90;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
.ax-collapse-body {
|
31
|
+
@apply ax-p-3;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
.ax-collapse-group {
|
35
|
+
@apply ax-block ax-border ax-border-light-200 ax-rounded ax-overflow-hidden;
|
36
|
+
|
37
|
+
ax-collpase,
|
38
|
+
.ax-collapse {
|
39
|
+
@apply ax-rounded-none ax-border-none;
|
40
|
+
.ax-collapse-header-container {
|
41
|
+
@apply ax-border-t ax-border-light-200;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
ax-collapse {
|
45
|
+
&:first-child {
|
46
|
+
.ax-collapse-header-container {
|
47
|
+
@apply ax-border-t-0;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
}
|
52
|
+
}
|
@@ -1,13 +1,15 @@
|
|
1
1
|
@layer components {
|
2
2
|
.ax-dialog {
|
3
3
|
@apply ax-grid ax-grid-cols-12 ax-gap-4 ax-px-6 ax-py-5 ax-relative ax-bg-white ax-shadow-md ax-border ax-border-solid ax-border-light-300 ax-rounded-lg ax-outline-none ax-overflow-hidden;
|
4
|
-
|
5
|
-
@
|
6
|
-
|
4
|
+
width: 25vw;
|
5
|
+
@include control-states("surface");
|
6
|
+
@include screen("mobile"){
|
7
|
+
width: calc(var(--ax-overlay-full-width) * 1vw);
|
7
8
|
}
|
8
|
-
@screen
|
9
|
-
width:
|
9
|
+
@include screen("tablet"){
|
10
|
+
width: 60vw;
|
10
11
|
}
|
12
|
+
|
11
13
|
.ax-dialog-icon-side {
|
12
14
|
@apply ax-flex ax-justify-center ax-col-span-2;
|
13
15
|
.ax-dialog-icon {
|
@@ -56,6 +58,6 @@
|
|
56
58
|
@apply ax-text-info-500 ax-bg-info-50;
|
57
59
|
}
|
58
60
|
}
|
59
|
-
|
60
61
|
}
|
61
|
-
|
62
|
+
|
63
|
+
}
|
@@ -35,7 +35,7 @@
|
|
35
35
|
}
|
36
36
|
|
37
37
|
&.ax-collapsed {
|
38
|
-
margin-inline-start: calc(-
|
38
|
+
margin-inline-start: calc(-2 * var(--attr-width));
|
39
39
|
}
|
40
40
|
|
41
41
|
&.ax-expanded {
|
@@ -51,17 +51,17 @@
|
|
51
51
|
|
52
52
|
&.ax-drawer-overlay {
|
53
53
|
&.ax-collapsed {
|
54
|
-
right: calc(-
|
54
|
+
right: calc(-2 * var(--attr-width));
|
55
55
|
}
|
56
56
|
|
57
57
|
&.ax-expanded {
|
58
|
-
right: calc(-
|
58
|
+
right: calc(-2 * var(--attr-diff));
|
59
59
|
}
|
60
60
|
}
|
61
61
|
|
62
62
|
&.ax-drawer-push {
|
63
63
|
&.ax-collapsed {
|
64
|
-
margin-inline-end: calc(-
|
64
|
+
margin-inline-end: calc(-2 * var(--attr-width));
|
65
65
|
}
|
66
66
|
|
67
67
|
&.ax-expanded {
|
@@ -21,7 +21,7 @@
|
|
21
21
|
}
|
22
22
|
|
23
23
|
.ax-popup {
|
24
|
-
@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;
|
24
|
+
@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 ax-mx-auto;
|
25
25
|
@include control-states("surface");
|
26
26
|
|
27
27
|
.ax-popup-header {
|
@@ -42,14 +42,12 @@
|
|
42
42
|
.ax-popup-main-container {
|
43
43
|
@apply ax-overflow-auto ax-flex-1;
|
44
44
|
}
|
45
|
-
.ax-popup-footer-container{
|
46
|
-
|
45
|
+
.ax-popup-footer-container {
|
47
46
|
}
|
48
47
|
&.ax-popup-full {
|
49
48
|
@apply ax-w-screen;
|
50
49
|
height: calc(100 * var(--ax-vh));
|
51
50
|
max-height: calc(100 * var(--ax-vh));
|
52
|
-
|
53
51
|
}
|
54
52
|
|
55
53
|
&.ax-fit {
|
@@ -89,18 +87,9 @@
|
|
89
87
|
}
|
90
88
|
|
91
89
|
@media all and (min-width: 768px) and (max-width: 1023px) {
|
92
|
-
&.ax-popup-sm {
|
93
|
-
width: 100vw;
|
94
|
-
max-height: calc(100 * var(--ax-vh));
|
95
|
-
.ax-popup-main {
|
96
|
-
@apply ax-h-screen;
|
97
|
-
}
|
98
|
-
}
|
99
|
-
|
100
90
|
&.ax-popup-md {
|
101
91
|
width: 500px !important;
|
102
92
|
}
|
103
|
-
|
104
93
|
&.ax-popup-lg {
|
105
94
|
width: 700px !important;
|
106
95
|
}
|
@@ -123,12 +112,11 @@
|
|
123
112
|
}
|
124
113
|
|
125
114
|
@media all and (min-width: 0px) and (max-width: 424px) {
|
126
|
-
&.ax-popup-sm,
|
127
115
|
&.ax-popup-md,
|
128
116
|
&.ax-popup-lg {
|
129
|
-
width:
|
130
|
-
height: calc(
|
131
|
-
max-height: calc(
|
117
|
+
width: calc(var(--ax-overlay-full-width) * 1vw);
|
118
|
+
height: calc(var(--ax-overlay-full-width) * var(--ax-vh));
|
119
|
+
max-height: calc(var(--ax-overlay-full-width) * var(--ax-vh));
|
132
120
|
.ax-popup-main {
|
133
121
|
@apply ax-h-screen;
|
134
122
|
}
|
@@ -136,28 +124,3 @@
|
|
136
124
|
}
|
137
125
|
}
|
138
126
|
}
|
139
|
-
|
140
|
-
// @layer components {
|
141
|
-
// ax-popup {
|
142
|
-
// @apply ax-bg-white ax-rounded-md;
|
143
|
-
// // ax-page-footer,
|
144
|
-
// // ax-page-header {
|
145
|
-
// // @apply ax-grid ax-grid-cols-12 ax-gap-2 ax-px-3 ax-py-2 ax-border-solid ax-border-light-300 dark:ax-border-light-700;
|
146
|
-
|
147
|
-
// // ax-prefix {
|
148
|
-
// // @apply ax-flex ax-col-span-6 ax-col-start-1 ax-col-end-7 ax-justify-start;
|
149
|
-
// // }
|
150
|
-
|
151
|
-
// // ax-suffix {
|
152
|
-
// // @apply ax-flex ax-col-span-6 ax-col-start-7 ax-col-end-13 ax-justify-end;
|
153
|
-
// // }
|
154
|
-
// // }
|
155
|
-
// // ax-page-footer {
|
156
|
-
// // @apply ax-border-t;
|
157
|
-
// // }
|
158
|
-
|
159
|
-
// // ax-page-header {
|
160
|
-
// // @apply ax-border-b;
|
161
|
-
// // }
|
162
|
-
// }
|
163
|
-
// }
|
@@ -0,0 +1,62 @@
|
|
1
|
+
@layer components {
|
2
|
+
ax-progress-bar,
|
3
|
+
.ax-progress-bar {
|
4
|
+
@apply ax-flex ax-justify-between ax-items-center ax-text-sm;
|
5
|
+
@include control-states("editor");
|
6
|
+
ax-prefix{
|
7
|
+
@apply ax-pe-2;
|
8
|
+
}
|
9
|
+
ax-suffix{
|
10
|
+
@apply ax-ps-2;
|
11
|
+
}
|
12
|
+
.ax-progress-bar-container {
|
13
|
+
@apply ax-w-full ax-h-2 ax-relative ax-bg-light-200 ax-flex ax-rounded-full;
|
14
|
+
.ax-progress-bar-rise {
|
15
|
+
max-width: 100%;
|
16
|
+
transition: width 1s;
|
17
|
+
@apply ax-bg-primary-500 ax-h-full ax-absolute ax-start-0 ax-rounded-full;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
&.ax-primary-default {
|
22
|
+
.ax-progress-bar-rise {
|
23
|
+
@apply ax-bg-primary-500;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
&.ax-secondary-default {
|
27
|
+
.ax-progress-bar-rise {
|
28
|
+
@apply ax-bg-secondary-500;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
&.ax-success-default {
|
32
|
+
.ax-progress-bar-rise {
|
33
|
+
@apply ax-bg-success-500;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
&.ax-warning-default {
|
37
|
+
.ax-progress-bar-rise {
|
38
|
+
@apply ax-bg-warning-500;
|
39
|
+
}
|
40
|
+
}
|
41
|
+
&.ax-danger-default {
|
42
|
+
.ax-progress-bar-rise {
|
43
|
+
@apply ax-bg-danger-500;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
&.ax-info-default {
|
47
|
+
.ax-progress-bar-rise {
|
48
|
+
@apply ax-bg-info-500;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
&.ax-light-default {
|
52
|
+
.ax-progress-bar-rise {
|
53
|
+
@apply ax-bg-light-300;
|
54
|
+
}
|
55
|
+
}
|
56
|
+
&.ax-dark-default {
|
57
|
+
.ax-progress-bar-rise {
|
58
|
+
@apply ax-bg-dark-500 dark:ax-bg-dark-300;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
@layer components {
|
2
|
+
ax-result,
|
3
|
+
.ax-result {
|
4
|
+
@apply ax-flex ax-flex-col;
|
5
|
+
.ax-result-icon {
|
6
|
+
@apply ax-text-6xl ax-text-center;
|
7
|
+
}
|
8
|
+
.ax-result-title,
|
9
|
+
.ax-result-description {
|
10
|
+
@apply ax-mt-4 ax-text-center;
|
11
|
+
}
|
12
|
+
.ax-result-title {
|
13
|
+
@apply ax-text-2xl ax-font-semibold ax-text-light-700 dark:ax-text-light-50;
|
14
|
+
}
|
15
|
+
.ax-result-description {
|
16
|
+
@apply ax-text-sm ax-text-light-500 dark:ax-text-light-100;
|
17
|
+
}
|
18
|
+
.ax-custom-icon,.ax-custom-image{
|
19
|
+
@apply ax-flex ax-items-center ax-justify-center;
|
20
|
+
}
|
21
|
+
.ax-result-content {
|
22
|
+
@apply ax-mt-4;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
}
|
@@ -39,13 +39,13 @@
|
|
39
39
|
}
|
40
40
|
}
|
41
41
|
}
|
42
|
-
.ax-
|
42
|
+
.ax-card-style {
|
43
43
|
.ax-selection-list {
|
44
|
-
&.ax-vertical {
|
44
|
+
&.ax-vertical,&.ax-horizontal {
|
45
45
|
& > div {
|
46
|
-
@apply ax-p-4 ax-border ax-border-light-300 ax-rounded-md;
|
46
|
+
@apply ax-p-4 ax-border ax-border-light-300 ax-rounded-md ax-shadow-sm;
|
47
47
|
&.ax-state-selected {
|
48
|
-
@apply ax-border-primary-500 ax-ring-1 ax-ring-primary-500;
|
48
|
+
@apply ax-border-primary-500 ax-ring-1 ax-ring-primary-500 ax-shadow-primary-500;
|
49
49
|
}
|
50
50
|
}
|
51
51
|
}
|
@@ -126,7 +126,7 @@
|
|
126
126
|
|
127
127
|
&.ax-look-pills-color {
|
128
128
|
ax-tab-item {
|
129
|
-
@apply ax-text-light-fore ax-
|
129
|
+
@apply ax-text-light-fore ax-me-1 ax-rounded dark:ax-text-primary-200;
|
130
130
|
|
131
131
|
&:hover {
|
132
132
|
@apply ax-bg-primary-100 ax-text-primary-500 dark:ax-text-primary-50 dark:ax-bg-primary-500;
|
@@ -32,14 +32,14 @@
|
|
32
32
|
right: 12px;
|
33
33
|
bottom: -4px;
|
34
34
|
margin-left: -1px;
|
35
|
-
border-right: 1px solid #d9d9d9;
|
35
|
+
// border-right: 1px solid #d9d9d9;
|
36
36
|
content: " ";
|
37
37
|
}
|
38
38
|
&::after {
|
39
39
|
position: absolute;
|
40
40
|
width: 10px;
|
41
41
|
height: 14px;
|
42
|
-
border-bottom: 1px solid #d9d9d9;
|
42
|
+
// border-bottom: 1px solid #d9d9d9;
|
43
43
|
content: " ";
|
44
44
|
}
|
45
45
|
}
|
@@ -1,9 +1,12 @@
|
|
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";
|
6
8
|
@import "./checkbox";
|
9
|
+
@import "./collapse";
|
7
10
|
@import "./datapager";
|
8
11
|
@import "./datepicker";
|
9
12
|
@import "./dialog";
|
@@ -19,8 +22,11 @@
|
|
19
22
|
@import "./loading";
|
20
23
|
@import "./menu";
|
21
24
|
@import "./popup";
|
25
|
+
@import "./progress";
|
22
26
|
@import "./radio";
|
23
27
|
@import "./range-slider";
|
28
|
+
@import "./rating";
|
29
|
+
@import "./result";
|
24
30
|
@import "./selectbox";
|
25
31
|
@import "./selection-list";
|
26
32
|
@import "./side-menu";
|
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: 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="" 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="" 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="" 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="" glyph-name="remove" d="M810.667 405.333h-597.333v85.333h597.333v-85.333z" />
|
38
38
|
<glyph unicode="" glyph-name="plus" d="M810.667 405.333h-256v-256h-85.333v256h-256v85.333h256v256h85.333v-256h256v-85.333z" />
|
39
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" />
|
40
|
+
<glyph unicode="" 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="" 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="" 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
|
package/src/icons/selection.json
CHANGED
@@ -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}}
|
package/src/icons/style.css
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
@font-face {
|
2
2
|
font-family: 'acorex-icon';
|
3
|
-
src:
|
4
|
-
|
5
|
-
url('fonts/acorex-icon.
|
6
|
-
url('fonts/acorex-icon.
|
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
|
}
|
package/src/icons/style.scss
CHANGED
@@ -2,10 +2,11 @@
|
|
2
2
|
|
3
3
|
@font-face {
|
4
4
|
font-family: '#{$icomoon-font-family}';
|
5
|
-
src:
|
6
|
-
|
7
|
-
url('#{$icomoon-font-path}/#{$icomoon-font-family}.
|
8
|
-
url('#{$icomoon-font-path}/#{$icomoon-font-family}.
|
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;
|
package/src/icons/variables.scss
CHANGED
package/src/utility/_mixins.scss
CHANGED
@@ -1,17 +1,23 @@
|
|
1
|
-
@mixin
|
1
|
+
@mixin screen($breakpoint) {
|
2
2
|
// $breakpoint is simply a variable that can have several values
|
3
3
|
|
4
4
|
@if $breakpoint == tablet {
|
5
5
|
// here `laptop` is the value of $breakpoint
|
6
6
|
// when call laptop, we mean the following piece of code
|
7
7
|
|
8
|
-
@media only screen and (max-width:
|
8
|
+
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
|
9
9
|
@content;
|
10
10
|
}
|
11
11
|
}
|
12
12
|
|
13
13
|
@if $breakpoint == mobile {
|
14
|
-
@media only screen and (max-width: 480px) {
|
14
|
+
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
|
15
|
+
@content;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
@if $breakpoint == laptop {
|
20
|
+
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
|
15
21
|
@content;
|
16
22
|
}
|
17
23
|
}
|