@acorex/styles 21.0.0-next.8 → 21.0.0-next51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/base/_preflight.scss +421 -0
  2. package/base/index.scss +15 -0
  3. package/components/{_action-item.css → _action-item.scss} +27 -19
  4. package/components/{_actionsheet.css → _actionsheet.scss} +3 -10
  5. package/components/{_check-box.css → _check-box.scss} +17 -8
  6. package/components/{_drop-down.css → _drop-down.scss} +15 -27
  7. package/components/_editor-container.scss +293 -0
  8. package/components/{_list.css → _list.scss} +42 -82
  9. package/components/{_radio.css → _radio.scss} +18 -16
  10. package/components/{_table.css → _table.scss} +19 -62
  11. package/components/_uploader.scss +150 -0
  12. package/components/index.scss +11 -0
  13. package/generators/index.js +1 -0
  14. package/generators/tailwind-class-generator.js +68 -0
  15. package/icons/fontawesome/_variables.scss +227 -0
  16. package/icons/fontawesome/index.scss +714 -0
  17. package/icons/huge/huge-bulk/_variables.scss +209 -0
  18. package/icons/huge/huge-bulk/index.scss +656 -0
  19. package/icons/huge/huge-duotone/_variables.scss +209 -0
  20. package/icons/huge/huge-duotone/index.scss +657 -0
  21. package/icons/huge/huge-solid-rounded/_variables.scss +209 -0
  22. package/icons/huge/huge-solid-rounded/index.scss +643 -0
  23. package/icons/huge/huge-solid-sharp/_variables.scss +209 -0
  24. package/icons/huge/huge-solid-sharp/index.scss +656 -0
  25. package/icons/huge/huge-solid-standard/_variables.scss +209 -0
  26. package/icons/huge/huge-solid-standard/index.scss +656 -0
  27. package/icons/huge/huge-stroke-rounded/_variables.scss +209 -0
  28. package/icons/huge/huge-stroke-rounded/index.scss +656 -0
  29. package/icons/huge/huge-stroke-sharp/_variables.scss +209 -0
  30. package/icons/huge/huge-stroke-sharp/index.scss +656 -0
  31. package/icons/huge/huge-stroke-standard/_variables.scss +209 -0
  32. package/icons/huge/huge-stroke-standard/index.scss +656 -0
  33. package/icons/huge/huge-twotone/_variables.scss +209 -0
  34. package/icons/huge/huge-twotone/index.scss +656 -0
  35. package/icons/lucide/_variables.scss +227 -0
  36. package/icons/lucide/index.scss +693 -0
  37. package/icons/material/_variables.scss +227 -0
  38. package/icons/material/index.scss +718 -0
  39. package/index.scss +7 -0
  40. package/mixins/_editor-looks.scss +32 -0
  41. package/mixins/_media.scss +73 -0
  42. package/mixins/_scroll-bar.scss +35 -0
  43. package/mixins/_util.scss +19 -0
  44. package/mixins/index.scss +4 -0
  45. package/package.json +3 -3
  46. package/tailwind-base.js +4 -0
  47. package/themes/{default copy.scss → default.scss} +9 -6
  48. package/utils/_theme-generator.scss +238 -0
  49. package/utils/_utils.scss +278 -0
  50. package/utils/index.scss +2 -0
  51. package/components/_editor-container.css +0 -306
  52. package/components/_uploader.css +0 -51
  53. package/components/index.css +0 -11
  54. package/icons/fontawesome/_variables.css +0 -229
  55. package/icons/fontawesome/index.css +0 -555
  56. package/icons/huge/huge-bulk/_variables.css +0 -211
  57. package/icons/huge/huge-bulk/index.css +0 -520
  58. package/icons/huge/huge-duotone/_variables.css +0 -211
  59. package/icons/huge/huge-duotone/index.css +0 -517
  60. package/icons/huge/huge-solid-rounded/_variables.css +0 -211
  61. package/icons/huge/huge-solid-rounded/index.css +0 -504
  62. package/icons/huge/huge-solid-sharp/_variables.css +0 -213
  63. package/icons/huge/huge-solid-sharp/index.css +0 -517
  64. package/icons/huge/huge-solid-standard/_variables.css +0 -211
  65. package/icons/huge/huge-solid-standard/index.css +0 -516
  66. package/icons/huge/huge-stroke-rounded/_variables.css +0 -211
  67. package/icons/huge/huge-stroke-rounded/index.css +0 -515
  68. package/icons/huge/huge-stroke-sharp/_variables.css +0 -142
  69. package/icons/huge/huge-stroke-sharp/index.css +0 -515
  70. package/icons/huge/huge-stroke-standard/_variables.css +0 -141
  71. package/icons/huge/huge-stroke-standard/index.css +0 -515
  72. package/icons/huge/huge-twotone/_variables.css +0 -211
  73. package/icons/huge/huge-twotone/index.css +0 -516
  74. package/icons/material/_variables.css +0 -229
  75. package/icons/material/index.css +0 -573
  76. package/index.css +0 -25
  77. package/themes/default.css +0 -975
  78. /package/components/{_general-button.css → _general-button.scss} +0 -0
  79. /package/components/{_ripple.css → _ripple.scss} +0 -0
@@ -1,11 +1,11 @@
1
- .dark {
1
+ @use '../mixins/index.scss' as mixins;
2
+ @include mixins.darkMode() {
2
3
  .ax-table {
3
4
  thead {
4
5
  background-color: rgba(var(--ax-sys-color-surface));
5
6
  }
6
7
  }
7
8
  }
8
-
9
9
  .ax-table {
10
10
  width: 100%;
11
11
  border-collapse: collapse;
@@ -14,54 +14,31 @@
14
14
  border-radius: var(--ax-sys-border-radius);
15
15
  border-width: 1px;
16
16
  border-color: rgba(var(--ax-sys-color-border-lightest-surface));
17
- font-size: 0.875rem
18
- /* 14px */
19
- ;
20
- line-height: 1.25rem
21
- /* 20px */
22
- ;
23
-
17
+ font-size: 0.875rem /* 14px */;
18
+ line-height: 1.25rem /* 20px */;
24
19
  td {
25
20
  border-bottom-width: 1px;
26
21
  border-color: rgba(var(--ax-sys-color-border-lightest-surface));
27
- padding-left: 1rem
28
- /* 16px */
29
- ;
30
- padding-right: 1rem
31
- /* 16px */
32
- ;
33
- padding-top: 0.75rem
34
- /* 12px */
35
- ;
36
- padding-bottom: 0.75rem
37
- /* 12px */
38
- ;
22
+ padding-left: 1rem /* 16px */;
23
+ padding-right: 1rem /* 16px */;
24
+ padding-top: 0.75rem /* 12px */;
25
+ padding-bottom: 0.75rem /* 12px */;
39
26
  }
40
-
41
27
  thead {
42
28
  border-bottom-width: 1px;
43
29
  border-color: rgba(var(--ax-sys-color-border-lightest-surface));
44
30
  background-color: rgba(var(--ax-sys-color-surface));
45
31
 
46
32
  th {
47
- padding-left: 1rem
48
- /* 16px */
49
- ;
50
- padding-right: 1rem
51
- /* 16px */
52
- ;
53
- padding-top: 0.875rem
54
- /* 14px */
55
- ;
56
- padding-bottom: 0.875rem
57
- /* 14px */
58
- ;
33
+ padding-left: 1rem /* 16px */;
34
+ padding-right: 1rem /* 16px */;
35
+ padding-top: 0.875rem /* 14px */;
36
+ padding-bottom: 0.875rem /* 14px */;
59
37
  text-align: start;
60
38
  font-weight: 500;
61
39
  text-transform: uppercase;
62
40
  }
63
41
  }
64
-
65
42
  &.ax-table-alternate {
66
43
  tbody {
67
44
  tr {
@@ -71,14 +48,12 @@
71
48
  }
72
49
  }
73
50
  }
74
-
75
51
  &.ax-table-bordered {
76
52
  thead {
77
53
  th {
78
54
  border-top-width: 0px !important;
79
55
  }
80
56
  }
81
-
82
57
  tbody {
83
58
  tr {
84
59
  &:last-child {
@@ -86,7 +61,6 @@
86
61
  border-bottom-width: 0px !important;
87
62
  }
88
63
  }
89
-
90
64
  td {
91
65
  &:last-child {
92
66
  border-bottom-width: 0px !important;
@@ -103,14 +77,12 @@
103
77
  &:first-child {
104
78
  border-inline-start-width: 0px;
105
79
  }
106
-
107
80
  &:last-child {
108
81
  border-inline-end-width: 0px;
109
82
  }
110
83
  }
111
84
  }
112
-
113
- @media screen and (max-width: 640px) {
85
+ @include mixins.mediaLessThan('xs') {
114
86
  &.ax-table-responsive {
115
87
  display: block;
116
88
  overflow-wrap: break-word;
@@ -128,44 +100,29 @@
128
100
  box-sizing: border-box;
129
101
  display: block;
130
102
  width: 100%;
131
- padding-left: 0.625rem
132
- /* 10px */
133
- ;
134
- padding-right: 0.625rem
135
- /* 10px */
136
- ;
137
- padding-top: 0.375rem
138
- /* 6px */
139
- ;
140
- padding-bottom: 0.375rem
141
- /* 6px */
142
- ;
143
-
103
+ padding-left: 0.625rem /* 10px */;
104
+ padding-right: 0.625rem /* 10px */;
105
+ padding-top: 0.375rem /* 6px */;
106
+ padding-bottom: 0.375rem /* 6px */;
144
107
  &:last-child {
145
108
  border-width: 0px;
146
109
  }
147
-
148
110
  &:before {
149
111
  content: attr(data-label);
150
112
  display: block;
151
113
  font-weight: 700;
152
114
  }
153
115
  }
154
-
155
116
  tr {
156
117
  border-width: 1px;
157
118
  border-color: rgba(var(--ax-sys-color-border-lightest-surface));
158
119
  }
159
-
160
120
  tr,
161
121
  tbody {
162
122
  float: inline-start;
163
- margin-bottom: 0.625rem
164
- /* 10px */
165
- ;
123
+ margin-bottom: 0.625rem /* 10px */;
166
124
  width: 100%;
167
125
  }
168
126
  }
169
127
  }
170
-
171
- }
128
+ }
@@ -0,0 +1,150 @@
1
+ @use '../mixins/index.scss' as mixin;
2
+
3
+ .ax-uploader-overlay-state {
4
+ border-radius: inherit;
5
+ pointer-events: none;
6
+ position: absolute;
7
+ inset-inline-start: 0px;
8
+ top: 0px;
9
+ z-index: 10;
10
+ display: flex;
11
+ height: 100%;
12
+ width: 100%;
13
+ cursor: pointer;
14
+ flex-direction: column;
15
+ align-items: center;
16
+ justify-content: space-evenly;
17
+ gap: 1rem /* 16px */;
18
+
19
+ // Enhanced backdrop with blur and gradient
20
+ background: linear-gradient(
21
+ 135deg,
22
+ rgba(var(--ax-sys-color-primary-500), 0.15) 0%,
23
+ rgba(var(--ax-sys-color-primary-400), 0.2) 100%
24
+ );
25
+ backdrop-filter: blur(8px);
26
+ -webkit-backdrop-filter: blur(8px);
27
+
28
+ // Modern border design
29
+ border: 2px dashed rgba(var(--ax-sys-color-primary-500), 0.6);
30
+ box-shadow:
31
+ 0 4px 16px rgba(var(--ax-sys-color-primary-500), 0.15),
32
+ inset 0 1px 0 rgba(255, 255, 255, 0.1);
33
+
34
+ // Typography
35
+ font-size: 0.9375rem /* 15px */;
36
+ line-height: 1.5rem /* 24px */;
37
+ font-weight: 500;
38
+ color: rgba(var(--ax-sys-color-primary-700));
39
+ text-align: center;
40
+
41
+ // Smooth transitions
42
+ transition-property: all;
43
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
44
+ transition-duration: 200ms;
45
+
46
+ // Icon styling
47
+ .ax-icon {
48
+ height: 3rem;
49
+ font-size: 2.5rem /* 40px */;
50
+ color: rgba(var(--ax-sys-color-primary-600));
51
+ filter: drop-shadow(0 2px 4px rgba(var(--ax-sys-color-primary-500), 0.2));
52
+ transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
53
+ animation: pulse 2s ease-in-out infinite;
54
+ }
55
+
56
+ // Text styling
57
+ > span:not(.ax-icon) {
58
+ max-width: 80%;
59
+ padding: 0 1rem;
60
+ text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
61
+ }
62
+
63
+ // Subtle animation on mount
64
+ animation: fadeInScale 200ms cubic-bezier(0.4, 0, 0.2, 1);
65
+
66
+ // Exit animation class
67
+ &.ax-uploader-overlay-exiting {
68
+ animation: fadeOutScale 200ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
69
+ }
70
+ }
71
+
72
+ // Pulse animation for icon
73
+ @keyframes pulse {
74
+ 0%,
75
+ 100% {
76
+ transform: scale(1);
77
+ opacity: 1;
78
+ }
79
+ 50% {
80
+ transform: scale(1.05);
81
+ opacity: 0.9;
82
+ }
83
+ }
84
+
85
+ // Fade in and scale animation
86
+ @keyframes fadeInScale {
87
+ from {
88
+ opacity: 0;
89
+ transform: scale(0.95);
90
+ }
91
+ to {
92
+ opacity: 1;
93
+ transform: scale(1);
94
+ }
95
+ }
96
+
97
+ // Fade out and scale animation
98
+ @keyframes fadeOutScale {
99
+ from {
100
+ opacity: 1;
101
+ transform: scale(1);
102
+ }
103
+ to {
104
+ opacity: 0;
105
+ transform: scale(0.95);
106
+ }
107
+ }
108
+
109
+ .ax-drop-zone {
110
+ > input {
111
+ position: absolute;
112
+ height: 100%;
113
+ width: 100%;
114
+ cursor: pointer;
115
+ opacity: 0;
116
+ }
117
+ }
118
+
119
+ @include mixin.darkMode() {
120
+ .ax-uploader-overlay-state {
121
+ // Dark mode gradient
122
+ background: linear-gradient(
123
+ 135deg,
124
+ rgba(var(--ax-sys-color-primary-600), 0.2) 0%,
125
+ rgba(var(--ax-sys-color-primary-500), 0.25) 100%
126
+ );
127
+
128
+ // Dark mode border
129
+ border-color: rgba(var(--ax-sys-color-primary-400), 0.5);
130
+
131
+ // Dark mode shadow
132
+ box-shadow:
133
+ 0 4px 16px rgba(var(--ax-sys-color-primary-900), 0.3),
134
+ inset 0 1px 0 rgba(255, 255, 255, 0.05);
135
+
136
+ // Dark mode text
137
+ color: rgba(var(--ax-sys-color-primary-300));
138
+
139
+ // Dark mode icon
140
+ .ax-icon {
141
+ color: rgba(var(--ax-sys-color-primary-400));
142
+ filter: drop-shadow(0 2px 4px rgba(var(--ax-sys-color-primary-900), 0.4));
143
+ }
144
+
145
+ // Dark mode text shadow
146
+ > span:not(.ax-icon) {
147
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
148
+ }
149
+ }
150
+ }
@@ -0,0 +1,11 @@
1
+ @forward './action-item';
2
+ @forward './actionsheet';
3
+ @forward './check-box';
4
+ @forward './drop-down';
5
+ @forward './editor-container';
6
+ @forward './general-button';
7
+ @forward './list';
8
+ @forward './radio';
9
+ @forward './ripple';
10
+ @forward './table';
11
+ @forward './uploader';
@@ -0,0 +1 @@
1
+ export * from './tailwind-class-generator';
@@ -0,0 +1,68 @@
1
+ /**
2
+ * You can give it the variable name you added in the theme file as input and generate color range classes from 50 to 950.
3
+ */
4
+ const variations = ['lightest', 'lighter', 'light', 'surface', 'dark', 'darker', 'darkest'];
5
+
6
+ export const createPalette = function (colorName) {
7
+ const shades = [50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950];
8
+ const palette = {
9
+ DEFAULT: `rgba(var(--ax-sys-color-${colorName}-500), <alpha-value>)`,
10
+ default: `rgba(var(--ax-sys-color-${colorName}-500), <alpha-value>)`,
11
+ };
12
+
13
+ shades.forEach((shade) => {
14
+ palette[shade] = `rgba(var(--ax-sys-color-${colorName}-${shade}), <alpha-value>)`;
15
+ });
16
+
17
+ return palette;
18
+ };
19
+
20
+ /**
21
+ * To be able to create additional color classes you need to use the createSurface.
22
+ * This function generates seven surface colors. Also, if you want to have surfaces in all Tailwind properties, you can put them in colors.
23
+ */
24
+ export const createSurfaces = function (colorName) {
25
+ return variations.reduce((surfaces, variation) => {
26
+ const surfaceVariant = variation === 'surface' ? '' : '-surface';
27
+ surfaces[variation] = `rgba(var(--ax-sys-color-${colorName}-${variation}${surfaceVariant}), <alpha-value>)`;
28
+ return surfaces;
29
+ }, {});
30
+ };
31
+
32
+ /**
33
+ * The on surface color is based on the surface color of the same name,
34
+ * so you can generate it with createOnSurface for both text and other colors.
35
+ */
36
+ export const createOnSurfaces = function (colorName) {
37
+ return variations.reduce((onSurfaces, variation) => {
38
+ const surfaceVariant = variation === 'surface' ? '' : '-surface';
39
+ const key = variation === 'contrast' ? `on-${variation}` : `on-${variation}`;
40
+ onSurfaces[key] = `rgba(var(--ax-sys-color-on-${colorName}-${variation}${surfaceVariant}), <alpha-value>)`;
41
+ return onSurfaces;
42
+ }, {});
43
+ };
44
+
45
+ /**
46
+ * The board color is only used for border colors, which you can generate with the createBorderSurfaces function.
47
+ */
48
+ export const createBorderSurfaces = function (colorName) {
49
+ return variations.reduce((borderSurfaces, variation) => {
50
+ const surfaceVariant = variation === 'surface' ? '' : '-surface';
51
+ borderSurfaces[variation] =
52
+ `rgba(var(--ax-sys-color-border-${colorName}-${variation}${surfaceVariant}), <alpha-value>)`;
53
+ return borderSurfaces;
54
+ }, {});
55
+ };
56
+
57
+ export function createColoredSurfaces(colorName) {
58
+ return variations.reduce((classes, variation) => {
59
+ const surfaceVariant = variation === 'surface' ? '' : '-surface';
60
+
61
+ classes[`.${colorName}-${variation}`] = {
62
+ backgroundColor: `rgb(var(--ax-sys-color-${colorName}-${variation}${surfaceVariant}))`,
63
+ color: `rgb(var(--ax-sys-color-on-${colorName}-${variation}${surfaceVariant}))`,
64
+ borderColor: `rgb(var(--ax-sys-color-border-${colorName}-${variation}${surfaceVariant}))`,
65
+ };
66
+ return classes;
67
+ }, {});
68
+ }
@@ -0,0 +1,227 @@
1
+ $ax-icon-more-horizontal: '\f141';
2
+ $ax-icon-more-horizontal-after: '';
3
+
4
+ $ax-icon-more-vertical: '\f142';
5
+ $ax-icon-more-vertical-after: '';
6
+
7
+ $ax-icon-arrow-long-up: '\f176';
8
+ $ax-icon-arrow-long-up-after: '';
9
+
10
+ $ax-icon-arrow-long-down: '\f175';
11
+ $ax-icon-arrow-long-down-after: '';
12
+
13
+ $ax-icon-color-palette: '\f53f';
14
+ $ax-icon-color-palette-after: '';
15
+
16
+ $ax-icon-arrow-left: '\f0d9';
17
+ $ax-icon-arrow-left-after: '';
18
+
19
+ $ax-icon-arrow-down: '\f0d7';
20
+ $ax-icon-arrow-down-after: '';
21
+
22
+ $ax-icon-arrow-up: '\f0d8';
23
+ $ax-icon-arrow-up-after: '';
24
+
25
+ $ax-icon-arrow-right: '\f0da';
26
+ $ax-icon-arrow-right-after: '';
27
+
28
+ $ax-icon-chevron-left: '\f053';
29
+ $ax-icon-chevron-left-after: '';
30
+
31
+ $ax-icon-chevron-down: '\f078';
32
+ $ax-icon-chevron-down-after: '';
33
+
34
+ $ax-icon-chevron-up: '\f077';
35
+ $ax-icon-chevron-up-after: '';
36
+
37
+ $ax-icon-chevron-right: '\f054';
38
+ $ax-icon-chevron-right-after: '';
39
+
40
+ $ax-icon-chevron-double-right: '\f324';
41
+ $ax-icon-chevron-double-right-after: '';
42
+
43
+ $ax-icon-chevron-double-left: '\f323';
44
+ $ax-icon-chevron-double-left-after: '';
45
+
46
+ $ax-icon-first-page: '\f33e';
47
+ $ax-icon-first-page-after: '';
48
+
49
+ $ax-icon-last-page: '\f340';
50
+ $ax-icon-last-page-after: '';
51
+
52
+ $ax-icon-calendar: '\f133';
53
+ $ax-icon-calendar-after: '';
54
+
55
+ $ax-icon-info: '\f05a';
56
+ $ax-icon-info-after: '';
57
+
58
+ $ax-icon-error: '\f06a';
59
+ $ax-icon-error-after: '';
60
+
61
+ $ax-icon-warning: '\f071';
62
+ $ax-icon-warning-after: '';
63
+
64
+ $ax-icon-check: '\f00c';
65
+ $ax-icon-check-after: '';
66
+
67
+ $ax-icon-check-circle: '\f058';
68
+ $ax-icon-check-circle-after: '';
69
+
70
+ $ax-icon-dobble-check: '\f560';
71
+ $ax-icon-dobble-check-after: '';
72
+
73
+ $ax-icon-close: '\f00d';
74
+ $ax-icon-close-after: '';
75
+
76
+ $ax-icon-clear: '\f057';
77
+ $ax-icon-clear-after: '';
78
+
79
+ $ax-icon-visibility-off: '\f070';
80
+ $ax-icon-visibility-off-after: '';
81
+
82
+ $ax-icon-visibility: '\f06e';
83
+ $ax-icon-visibility-after: '';
84
+
85
+ $ax-icon-unfold-more: '\f0dc';
86
+ $ax-icon-unfold-more-after: '';
87
+
88
+ $ax-icon-download: '\f019';
89
+ $ax-icon-download-after: '';
90
+
91
+ $ax-icon-upload: '\e09a';
92
+ $ax-icon-upload-after: '';
93
+
94
+ $ax-icon-search: '\f002';
95
+ $ax-icon-search-after: '';
96
+
97
+ $ax-icon-copy: '\f0c5';
98
+ $ax-icon-copy-after: '';
99
+
100
+ $ax-icon-refresh: '\f021';
101
+ $ax-icon-refresh-after: '';
102
+
103
+ $ax-icon-inbox: '\f01c';
104
+ $ax-icon-inbox-after: '';
105
+
106
+ $ax-icon-emoji: '\f118';
107
+ $ax-icon-emoji-after: '';
108
+
109
+ $ax-icon-attach: '\f0c6';
110
+ $ax-icon-attach-after: '';
111
+
112
+ $ax-icon-mic: '\f130';
113
+ $ax-icon-mic-after: '';
114
+
115
+ $ax-icon-send: '\f1d8';
116
+ $ax-icon-send-after: '';
117
+
118
+ $ax-icon-play: '\f04b';
119
+ $ax-icon-play-after: '';
120
+
121
+ $ax-icon-pause: '\f04c';
122
+ $ax-icon-pause-after: '';
123
+
124
+ $ax-icon-reload: '\f2f9';
125
+ $ax-icon-reload-after: '';
126
+
127
+ $ax-icon-heart: '\f004';
128
+ $ax-icon-heart-after: '';
129
+
130
+ $ax-icon-comment: '\f075';
131
+ $ax-icon-comment-after: '';
132
+
133
+ $ax-icon-bold: '\f032';
134
+ $ax-icon-bold-after: '';
135
+
136
+ $ax-icon-italic: '\f033';
137
+ $ax-icon-italic-after: '';
138
+
139
+ $ax-icon-strike: '\f0cc';
140
+ $ax-icon-strike-after: '';
141
+
142
+ $ax-icon-under-line: '\f0cd';
143
+ $ax-icon-under-line-after: '';
144
+
145
+ $ax-icon-order-list: '\f0cb';
146
+ $ax-icon-order-list-after: '';
147
+
148
+ $ax-icon-un-order-list: '\f0ca';
149
+ $ax-icon-un-order-list-after: '';
150
+
151
+ $ax-icon-align-left: '\f036';
152
+ $ax-icon-align-left-after: '';
153
+
154
+ $ax-icon-align-right: '\f038';
155
+ $ax-icon-align-right-after: '';
156
+
157
+ $ax-icon-align-center: '\f037';
158
+ $ax-icon-align-center-after: '';
159
+
160
+ $ax-icon-align-justify: '\f039';
161
+ $ax-icon-align-justify-after: '';
162
+
163
+ $ax-icon-undo: '\f0e2';
164
+ $ax-icon-undo-after: '';
165
+
166
+ $ax-icon-redo: '\f01e';
167
+ $ax-icon-redo-after: '';
168
+
169
+ $ax-icon-highlight: '\f591';
170
+ $ax-icon-highlight-after: '';
171
+
172
+ $ax-icon-link: '\f0c1';
173
+ $ax-icon-link-after: '';
174
+
175
+ $ax-icon-image: '\f03e';
176
+ $ax-icon-image-after: '';
177
+
178
+ $ax-icon-pen: '\f304';
179
+ $ax-icon-pen-after: '';
180
+
181
+ $ax-icon-eraser: '\f12d';
182
+ $ax-icon-eraser-after: '';
183
+
184
+ $ax-icon-pen-ruler: '\f5ae';
185
+ $ax-icon-pen-ruler-after: '';
186
+
187
+ $ax-icon-crop: '\f125';
188
+ $ax-icon-crop-after: '';
189
+
190
+ $ax-icon-full-screen: '\f065';
191
+ $ax-icon-full-screen-after: '';
192
+
193
+ $ax-icon-up-folder: '\e632';
194
+ $ax-icon-up-folder-after: '';
195
+
196
+ $ax-icon-sort: '\e0ae';
197
+ $ax-icon-sort-after: '';
198
+
199
+ $ax-icon-menu: '\f0c9';
200
+ $ax-icon-menu-after: '';
201
+
202
+ $ax-icon-plus: '\2b';
203
+ $ax-icon-plus-after: '';
204
+
205
+ $ax-icon-trash: '\f1f8';
206
+ $ax-icon-trash-after: '';
207
+
208
+ $ax-icon-arrow-turn-right: '\e635';
209
+ $ax-icon-arrow-turn-right-after: '';
210
+
211
+ $ax-icon-arrow-turn-left: '\e632';
212
+ $ax-icon-arrow-turn-left-after: '';
213
+
214
+ $ax-icon-save: '\f0c7';
215
+ $ax-icon-save-after: '';
216
+
217
+ $ax-icon-minimize: '\f068';
218
+ $ax-icon-minimize-after: '';
219
+
220
+ $ax-icon-maximize: '\f31d';
221
+ $ax-icon-maximize-after: '';
222
+
223
+ $ax-icon-code: '\f121';
224
+ $ax-icon-code-after: '';
225
+
226
+ $ax-icon-paragraph: '\f1dd';
227
+ $ax-icon-paragraph-after: '';